Skip to content

Commit

Permalink
Preface command-line tox invocation with python -m
Browse files Browse the repository at this point in the history
  • Loading branch information
agriyakhetarpal committed Jul 30, 2024
1 parent 8b53377 commit db937a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ jobs:
run: |
python -m pip install tox wheel
- name: Run ${{ matrix.env }}
run: tox -e ${{ matrix.env }}
run: python -m tox -e ${{ matrix.env }}
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ jobs:
- name: Install Python build tools
run: python -m pip install tox wheel
- name: Run tests
run: tox run -e py
run: python -m tox run -e py
- name: Install Scipy prerequisites for Ubuntu
if: startsWith(matrix.platform, 'ubuntu')
run: sudo apt-get install libopenblas-dev
- name: Run tests with scipy
if: startsWith(matrix.platform, 'ubuntu') || startsWith(matrix.python-version, 'pypy') != true
run: tox run -e py-scipy
run: python -m tox run -e py-scipy

0 comments on commit db937a4

Please sign in to comment.