Skip to content

Commit 7de41c8

Browse files
committed
Added tox
1 parent 47f361b commit 7de41c8

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

tox.ini

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[tox]
2+
envlist = py{37,38,39,310}-{pytest,mypy}
3+
4+
5+
[testenv:py310-pytest]
6+
description = Run pytest.
7+
deps =
8+
pytest
9+
; {[env]deps}
10+
commands =
11+
pytest
12+
13+
14+
[testenv:py310-mypy]
15+
description = Run mypy
16+
deps =
17+
mypy
18+
commands =
19+
mypy --install-types --non-interactive {toxinidir}/filexdb

0 commit comments

Comments
 (0)