diff options
author | Devaev Maxim <[email protected]> | 2020-10-17 02:21:39 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2020-10-17 02:21:39 +0300 |
commit | 0d3f5f0acc4d5f9c771525efb4daf5a4403b763b (patch) | |
tree | 821e4eac640763a7789d83385211169ccbdbb15d | |
parent | 678b3d24b877ede0a2730c6c47d430a8b5f78244 (diff) |
not parallel in github
-rw-r--r-- | .github/workflows/dockerimage.yml | 2 | ||||
-rw-r--r-- | Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/dockerimage.yml b/.github/workflows/dockerimage.yml index b23de9c6..efbe5655 100644 --- a/.github/workflows/dockerimage.yml +++ b/.github/workflows/dockerimage.yml @@ -17,4 +17,4 @@ jobs: run: make testenv - name: Running tests ... - run: make tox + run: make tox CMD="tox -c testenv/tox.ini" @@ -68,7 +68,7 @@ tox: testenv && cp /usr/share/kvmd/configs.default/kvmd/main/$(if $(P),$(P),$(DEFAULT_PLATFORM)).yaml /etc/kvmd/main.yaml \ && cp /src/testenv/$(if $(P),$(P),$(DEFAULT_PLATFORM)).override.yaml /etc/kvmd/override.yaml \ && cd /src \ - && tox -q -c testenv/tox.ini $(if $(E),-e $(E),-p auto) \ + && $(if $(CMD),$(CMD),tox -q -c testenv/tox.ini $(if $(E),-e $(E),-p auto)) \ " |