Skip to content

Commit

Permalink
add --pyargs and py3.8 to tested python version
Browse files Browse the repository at this point in the history
  • Loading branch information
simontorres committed Jul 24, 2024
1 parent 9ef0530 commit 759fbe2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ jobs:
python: 3.9
toxenv: py39-test

- name: Python 3.8
os: ubuntu-latest
python: 3.8
toxenv: py38-test

steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ deps =
cov: mock

commands =
pytest '{toxinidir}/goodman_pipeline' {posargs}
cov: pytest '{toxinidir}/goodman_pipeline' --cov goodman_pipeline {posargs}
pytest --pyargs '{toxinidir}/goodman_pipeline' {posargs}
cov: pytest --pyargs '{toxinidir}/goodman_pipeline' --cov goodman_pipeline {posargs}
cov: coverage xml -o '{toxinidir}/coverage.xml'
html: coverage html -d .coverage_html

0 comments on commit 759fbe2

Please sign in to comment.