Skip to content

Commit

Permalink
added python3 -m to fix ubuntu tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alexhroom committed Aug 12, 2024
1 parent 247097a commit c310658
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,4 @@ jobs:
pip install -r requirements-dev.txt
pip install .
- name: Run pytest
run: pytest -s tests/ --cov=rascal2 --cov-report=term
run: python3 -m pytest -s tests/ --cov=rascal2 --cov-report=term
2 changes: 1 addition & 1 deletion .github/workflows/unit_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ jobs:
- name: Install RasCAL2
run: pip install .
- name: Run pytest
run: pytest -s tests/ -m "not slow" --cov=rascal2 --cov-report=term
run: python3 -m pytest -s tests/ -m "not slow" --cov=rascal2 --cov-report=term

0 comments on commit c310658

Please sign in to comment.