-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
tox.ini
52 lines (47 loc) · 781 Bytes
/
tox.ini
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
46
47
48
49
50
51
52
[tox]
requires =
tox>=4.2
env_list =
cog
cli
lint
pins
py{py3, 314, 313, 312, 311, 310, 39}
[testenv]
extras =
tests
set_env =
COVERAGE_CORE = sysmon
commands =
{envpython} -m pytest \
--cov norwegianblue \
--cov tests \
--cov-report html \
--cov-report term \
--cov-report xml \
{posargs}
[testenv:cog]
skip_install = true
deps =
cogapp
commands =
cog -Pr README.md
[testenv:cli]
commands =
norwegianblue --version
norwegianblue --help
eol --version
eol --help
[testenv:lint]
skip_install = true
deps =
pre-commit
pass_env =
PRE_COMMIT_COLOR
commands =
pre-commit run --all-files --show-diff-on-failure
[testenv:pins]
deps =
-r requirements.txt
extras =
None