forked from tehmaze/xmodem
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
42 lines (38 loc) · 695 Bytes
/
Copy pathtox.ini
File metadata and controls
42 lines (38 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[tox]
env_list =
py36
py37
py38
py39
py310
py311
py312
pypy3
skip_missing_interpreters = true
[testenv]
description = Run unit and functional tests
package = editable
deps =
-rrequirements-testing.txt
commands =
pytest --verbose --verbose --cov=xmodem {posargs}
[testenv:docs]
description = Build Sphinx documentation
basepython = python3.11
deps =
-rrequirements-docs.txt
commands =
sphinx-build -b html doc/source doc/build/html
[testenv:coveralls]
description = Upload coverage to Coveralls
basepython = python3.11
deps =
PyYAML
coveralls
commands =
coveralls
[gh-actions]
python =
3.9: py39
3.10: py310
3.11: py311