Parcourir la source

added flag so tests will not run in parallel and corupt the DB for the other test(s)

Matthew R Kasun il y a 4 ans
Parent
commit
765d632c7c
1 fichiers modifiés avec 1 ajouts et 2 suppressions
  1. 1 2
      .github/workflows/test.yml

+ 1 - 2
.github/workflows/test.yml

@@ -19,5 +19,4 @@ jobs:
         uses: actions/checkout@v2
       - name: run tests
         run: |
-            go test ./test -v
-            go test ./controllers -v
+            go test -p 1 ./... -v