diff --git a/.github/workflows/tox_pytests.yml b/.github/workflows/tox_pytests.yml index f519870..eefa8cf 100644 --- a/.github/workflows/tox_pytests.yml +++ b/.github/workflows/tox_pytests.yml @@ -27,7 +27,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install tox tox-gh-actions + python -m pip install tox tox-gh-actions coverage converalls - name: Test with tox run: tox diff --git a/pyproject.toml b/pyproject.toml index 4bdfa66..b4edcc1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -76,7 +76,6 @@ docs = [ ] test = [ "coverage", - "coveralls", "matplotlib", "pytest", ] diff --git a/tox.ini b/tox.ini index 3bf479b..445939a 100644 --- a/tox.ini +++ b/tox.ini @@ -6,7 +6,6 @@ envlist = py39, py310, py311, - py3-cover, pypy3, report @@ -18,7 +17,7 @@ python = [testenv] basepython = - {bootstrap,clean,check,report,docs,codecov,coveralls}: {env:TOXPYTHON:python3} + {clean,check,report,docs}: {env:TOXPYTHON:python3} extras = test setenv = @@ -26,8 +25,6 @@ setenv = PYTHONUNBUFFERED=yes passenv = * -deps = - pytest commands = {posargs:pytest -vv --ignore=src} @@ -43,7 +40,6 @@ commands = flake8 src tests isort --check-only --profile black --diff src tests - [testenv:docs] usedevelop = true extras = docs @@ -51,12 +47,6 @@ commands = sphinx-build {posargs:-E} -b html docs docs/_build sphinx-build -b linkcheck docs docs/_build -[testenv:coveralls] -deps = coveralls -skip_install = true -commands = - coveralls [] - [testenv:report] deps = coverage skip_install = true @@ -78,7 +68,6 @@ usedevelop = true commands = {posargs:pytest --cov --cov-report=term-missing -vv} deps = - {[testenv]deps} pytest-cov [testenv:py310] @@ -89,7 +78,6 @@ usedevelop = true commands = {posargs:pytest --cov --cov-report=term-missing -vv} deps = - {[testenv]deps} pytest-cov [testenv:py311] @@ -100,18 +88,6 @@ usedevelop = true commands = {posargs:pytest --cov --cov-report=term-missing -vv} deps = - {[testenv]deps} - pytest-cov - -[testenv:py3-cover] -basepython = {env:TOXPYTHON:python3} -setenv = - {[testenv]setenv} -usedevelop = true -commands = - {posargs:pytest --cov --cov-report=term-missing -vv} -deps = - {[testenv]deps} pytest-cov [testenv:pypy3-nocov]