Set -p 1 for management tests

We still have some client tests that can lock other tests within the management code

for now, I am adding back the -p 1 flag
This commit is contained in:
Maycon Santos 2024-12-17 13:34:51 +01:00
parent 21ba6ad266
commit ddc020d34f

View File

@ -183,7 +183,7 @@ jobs:
run: git --no-pager diff --exit-code
- name: Test
run: CGO_ENABLED=1 GOARCH=${{ matrix.arch }} NETBIRD_STORE_ENGINE=${{ matrix.store }} CI=true go test -exec 'sudo --preserve-env=CI,NETBIRD_STORE_ENGINE' -timeout 10m $(go list ./... | grep /management)
run: CGO_ENABLED=1 GOARCH=${{ matrix.arch }} NETBIRD_STORE_ENGINE=${{ matrix.store }} CI=true go test -exec 'sudo --preserve-env=CI,NETBIRD_STORE_ENGINE' -timeout 10m -p 1 $(go list ./... | grep /management)
benchmark:
needs: [ build-cache ]