Skip to content

Commit

Permalink
Change pytest for ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
spirosmaggioros committed Sep 2, 2024
1 parent d53ff02 commit 70eb8d8
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-tests-3.10.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ jobs:
run: pip install setuptools && pip install -r dev-dependencies.txt
- name: Run unit tests
run: |
cd tests/unit && pytest --cov=../../
cd tests/unit && python -m unittest discover -s . -p "*.py"
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-tests-3.11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ jobs:
run: pip install setuptools && pip install -r dev-dependencies.txt
- name: Run unit tests
run: |
cd tests/unit && pytest --cov=../../
cd tests/unit && python -m unittest discover -s . -p "*.py"
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-tests-3.12.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ jobs:
run: pip install setuptools && pip install -r dev-dependencies.txt
- name: Run unit tests
run: |
cd tests/unit && pytest --cov=../../
cd tests/unit && python -m unittest discover -s . -p "*.py"
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-tests-3.8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ jobs:
run: pip install setuptools && pip install .
- name: Run unit tests
run: |
cd tests/unit && pytest --cov=../../
cd tests/unit && python -m unittest discover -s . -p "*.py"
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu-tests-3.9.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ jobs:
run: pip install setuptools && pip install -r dev-dependencies.txt
- name: Run unit tests
run: |
cd tests/unit && pytest --cov=../../
cd tests/unit && python -m unittest discover -s . -p "*.py"

0 comments on commit 70eb8d8

Please sign in to comment.