-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
tox.ini
51 lines (47 loc) · 873 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
[tox]
requires =
tox>=4.2
env_list =
cog
lint
pins
py{py3, 314, 313, 312, 311, 310, 39}
[testenv]
extras =
tests
pass_env =
FORCE_COLOR
set_env =
COVERAGE_CORE = sysmon
commands_pre =
- {envpython} -m pip install --only-binary :all: numpy pandas
commands =
{envpython} -m pytest \
--cov pypistats \
--cov tests \
--cov-report html \
--cov-report term \
--cov-report xml \
{posargs}
pypistats --version
pypistats --help
pypistats recent --help
[testenv:cog]
skip_install = true
deps =
cogapp
commands =
cog -Pr README.md
[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]
extras =
None
commands_pre =
{envpython} -m pip install -r requirements.txt