Skip to content

Commit

Permalink
Enable emulation testing with pytest-xdist support
Browse files Browse the repository at this point in the history
Signed-off-by: Travis F. Collins <travis.collins@analog.com>
  • Loading branch information
tfcollins committed Oct 1, 2024
1 parent 191e31d commit 79097f9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Test
run: |
pytest -vs --cov=adi --scan-verbose --emu --junitxml="results.xml" -k 'not prod'
pytest -vs --cov=adi --scan-verbose --emu --junitxml="results.xml" -k 'not prod' -n auto
- name: Report coverage
if: (github.event_name != 'pull_request') && (matrix.python-version == 3.6)
Expand All @@ -68,7 +68,7 @@ jobs:
- name: Test without optional dependencies
run: |
pip uninstall -y paramiko
pytest -vs --scan-verbose --emu --junitxml="results.xml" -k 'not prod'
pytest -vs --scan-verbose --emu --junitxml="results.xml" -k 'not prod' -n auto
Lint:
Expand Down
2 changes: 1 addition & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ scapy
scipy<=1.12.0
pytest-cov
coveralls
pytest-libiio>=0.0.20
pytest-libiio>=0.0.21
bump2version
pytest-html==3.2.0
plotly-express
Expand Down

0 comments on commit 79097f9

Please sign in to comment.