Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable emulation testing with pytest-xdist support #601

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading