Allow tftest fixtures to run tests in parallel

This commit is contained in:
Julio Castillo
2022-01-10 20:06:02 +01:00
parent 8df9ef9035
commit 144e841ce4
3 changed files with 34 additions and 15 deletions

View File

@@ -54,7 +54,7 @@ jobs:
- name: Run tests environments
id: test-environments
run: |
pytest -n 4 --dist loadfile -vv tests/examples
pytest -n 4 -vv tests/examples
tests-examples:
runs-on: ubuntu-latest
@@ -83,7 +83,7 @@ jobs:
- name: Run tests examples
id: test-examples
run: |
pytest -n 4 --dist loadfile -vv tests/modules/examples
pytest -n 4 -vv tests/modules/examples
tests-modules:
runs-on: ubuntu-latest
@@ -112,4 +112,4 @@ jobs:
- name: Run tests modules
id: test-modules
run: |
pytest -n 4 --dist loadgroup -vv --ignore=tests/modules/examples tests/modules
pytest -n 4 -vv --ignore=tests/modules/examples tests/modules