-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathtox.ini
More file actions
54 lines (48 loc) · 787 Bytes
/
Copy pathtox.ini
File metadata and controls
54 lines (48 loc) · 787 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
46
47
48
49
50
51
52
53
54
[tox]
requires =
tox>=4.2
env_list =
cog
cli
lint
mypy
pins
py{py3, 315, 314, 313, 312, 311, 310}
[testenv]
extras =
tests
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 =
prek
commands =
prek run --all-files --show-diff-on-failure
[testenv:mypy]
deps =
-r requirements-mypy.txt
commands =
mypy src {posargs}
[testenv:pins]
deps =
-r requirements.txt
extras =