Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tox CI fix #1656

Merged
merged 6 commits into from
Aug 22, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci_cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ jobs:
python -m pip install --upgrade pip tox
- name: Test with tox
run: |
tox -e ${{ matrix.toxenv }}
tox -e ${{ matrix.python }}-${{ matrix.toxenv }}
2 changes: 1 addition & 1 deletion .github/workflows/ci_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
python -m pip install --upgrade pip tox
- name: Test with tox
run: |
tox -e ${{ matrix.toxenv }}
tox -e ${{ matrix.python }}-${{ matrix.toxenv }}
- name: Upload coverage to codecov
if: "contains(matrix.toxenv, '-cov')"
uses: codecov/codecov-action@v3
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[tox]
envlist =
py{39,310,311}-test{,-alldeps,-shapely,-specutils}{,-cov}
py{39,310,311}-test-numpy{120,121,122,123}
py{39,310,311}-test-{numpy,astropy,linetools,ginga}dev
{3.9,3.10,3.11}-test{,-alldeps,-shapely,-specutils}{,-cov}
{3.9,3.10,3.11}-test-numpy{120,121,122,123}
tbowers7 marked this conversation as resolved.
Show resolved Hide resolved
{3.9,3.10,3.11}-test-{numpy,astropy,linetools,ginga}dev
codestyle
requires =
setuptools >= 30.3.0
Expand Down
Loading