Skip to content

Commit

Permalink
mv pytest run opts to .ini file
Browse files Browse the repository at this point in the history
  • Loading branch information
pmhalvor committed Sep 16, 2024
1 parent 87223a6 commit cb905c9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
python-version: [3.9, 3.11] # You can add or remove Python versions to test against
python-version: 3.11 # [3.9, 3.11] # You can add or remove Python versions to test against

steps:
- name: Checkout repository
Expand All @@ -32,4 +32,4 @@ jobs:
- name: Run tests with pytest
run: |
python -m pytest --vvrP
python -m pytest
3 changes: 2 additions & 1 deletion pytest.ini
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
[pytest]
pythonpath = src/pipeline
pythonpath = src/pipeline
addopts = -vv -rP

0 comments on commit cb905c9

Please sign in to comment.