Skip to content

Commit

Permalink
create integration tox environment and ignore integraiton tests for n…
Browse files Browse the repository at this point in the history
…ormal use
  • Loading branch information
dkrako committed Oct 6, 2023
1 parent 89c336c commit 3aef774
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ envlist =
py311
docs
coverage
integration
pylint


[testenv]
Expand All @@ -16,6 +18,7 @@ setenv =
COVERAGE_FILE = .coverage.{envname}
commands =
pytest \
--ignore=tests/integration \
--tb=long \
--cov --cov-append \
--cov-report term-missing \
Expand Down Expand Up @@ -52,6 +55,17 @@ commands =
{posargs}


[testenv:integration]
deps =
.[test]
commands =
pytest \
-v \
--tb=long \
tests/integration
{posargs:.}


[testenv:pylint]
deps =
pylint
Expand Down

0 comments on commit 3aef774

Please sign in to comment.