Skip to content

Commit fc9ee5a

Browse files
committed
Add tox for testing
1 parent f272707 commit fc9ee5a

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

requirements.txt

Lines changed: 0 additions & 1 deletion
This file was deleted.

tox.ini

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[tox]
2+
envlist = min,py39,py310,py311
3+
skip_missing_interpreters = True
4+
5+
[testenv]
6+
deps =
7+
pytest
8+
pytest-cov
9+
commands = pytest --cov=src --cov-report=term {posargs:tests}
10+
11+
[testenv:min]
12+
basepython = python3.8

0 commit comments

Comments
 (0)