Skip to content

Commit

Permalink
ci: fix tox python env id
Browse files Browse the repository at this point in the history
  • Loading branch information
marcofavorito authored and marcofavoritobi committed Mar 18, 2023
1 parent 186ece6 commit 3fd8000
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ jobs:
# run: ...
- name: Unit tests and coverage
run: |
pyver=$(echo ${{ matrix.python_version }} | tr -d ".")
pyver=`echo ${{ matrix.python-version }} | tr -d "."`
tox -e py${pyver} -- -m 'not e2e'
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
fail_ci_if_error: false
- name: Notebook tests
run: |
pyver=$(echo ${{ matrix.python_version }} | tr -d ".")
pyver=`echo ${{ matrix.python-version }} | tr -d "."`
tox -e py${pyver}-nb
1 change: 0 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ commands =

# test environment for notebooks
[testenv:py{38,39,310}-nb]
basepython = python3.8
deps =
pytest>=7.1.2,<7.2.0
mesa>=0.9.0,<0.10.0
Expand Down

0 comments on commit 3fd8000

Please sign in to comment.