-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
45 lines (39 loc) · 712 Bytes
/
tox.ini
File metadata and controls
45 lines (39 loc) · 712 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
43
44
45
[tox]
isolated_build = True
skipsdist = True
envlist = py{38,39,310,311}
requires =
tox-poetry-installer[poetry] == 0.10.0
tox-gh-actions
[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
[testenv]
passenv = *
install_project_deps = True
locked_deps =
pytest
pandas
pytest-sftpserver
commands =
pytest test/
[testenv:coverage]
deps=
coverage
install_project_deps = True
locked_deps =
pytest
pandas
pytest-sftpserver
commands=
coverage run --source=chunkr --branch -m pytest .
coverage report -m
coverage xml
[testenv:linting]
deps =
pylint
pre-commit
commands = pre-commit run --all-files --show-diff-on-failure