diff --git a/tox.ini b/tox.ini index 0b37459a8..6feaa0fb0 100644 --- a/tox.ini +++ b/tox.ini @@ -7,6 +7,8 @@ envlist = py311 docs coverage + integration + pylint [testenv] @@ -16,6 +18,7 @@ setenv = COVERAGE_FILE = .coverage.{envname} commands = pytest \ + --ignore=tests/integration \ --tb=long \ --cov --cov-append \ --cov-report term-missing \ @@ -52,6 +55,17 @@ commands = {posargs} +[testenv:integration] +deps = + .[test] +commands = + pytest \ + -v \ + --tb=long \ + tests/integration + {posargs:.} + + [testenv:pylint] deps = pylint