Skip to content

Commit

Permalink
Clean env first
Browse files Browse the repository at this point in the history
  • Loading branch information
raman325 committed Nov 14, 2023
1 parent 2460b3b commit 334cf82
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
[tox]
envlist = py311, test_orjson, lint, mypy
envlist = clean, py311, test_orjson, lint, mypy
skip_missing_interpreters = True

[gh-actions]
python =
3.11: py311, test_orjson, lint, mypy
3.11: clean, py311, test_orjson, lint, mypy

[testenv:clean]
deps = coverage
skip_install = true
commands = coverage erase

[testenv]
commands =
pytest --timeout=30 --cov=zwave_js_server --cov-report=xml {posargs}
pytest --timeout=30 --cov=zwave_js_server --cov-report=xml --cov-append {posargs}
deps =
-rrequirements.txt
-rrequirements_test.txt
Expand Down

0 comments on commit 334cf82

Please sign in to comment.