Fix tox coverage report

This commit is contained in:
ZipFile 2024-08-13 20:56:16 +00:00
parent cb81e56e5e
commit a99497095e
2 changed files with 4 additions and 2 deletions

View File

@ -41,6 +41,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
env: env:
DEPENDENCY_INJECTOR_DEBUG_MODE: 1 DEPENDENCY_INJECTOR_DEBUG_MODE: 1
PIP_VERBOSE: 1
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps: steps:
@ -50,7 +51,7 @@ jobs:
python-version: 3.12 python-version: 3.12
- run: pip install tox 'cython>=3,<4' - run: pip install tox 'cython>=3,<4'
- run: make cythonize - run: make cythonize
- run: tox - run: tox -vv
env: env:
TOXENV: coveralls TOXENV: coveralls

View File

@ -1,4 +1,5 @@
[tox] [tox]
parallel_show_output = true
envlist= envlist=
coveralls, pylint, flake8, pydocstyle, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12, pypy3.9, pypy3.10 coveralls, pylint, flake8, pydocstyle, 3.7, 3.8, 3.9, 3.10, 3.11, 3.12, pypy3.9, pypy3.10
@ -24,7 +25,7 @@ commands = pytest -c tests/.configs/pytest.ini
python_files = test_*_py3*.py python_files = test_*_py3*.py
[testenv:coveralls] [testenv:coveralls]
passenv = GITHUB_*, COVERALLS_* passenv = GITHUB_*, COVERALLS_*, DEPENDENCY_INJECTOR_*
basepython=python3.12 basepython=python3.12
deps= deps=
{[testenv]deps} {[testenv]deps}