forked from joke2k/faker
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tox.ini
62 lines (53 loc) · 1.09 KB
/
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
53
54
55
56
57
58
59
60
61
62
[tox]
envlist=py{36,37,38,39,py3},32bit,alpine,flake8,checkmanifest,isort
skip_missing_interpreters = true
[testenv]
deps =
coverage>=5.2
freezegun<0.4
pytest>=6.0.1
random2>=1.0.1
ukpostcodeparser>=1.1.1
validators>=0.13.0
sphinx>=2.4,<3.0
commands =
coverage run --source=faker -m pytest
coverage run --source=faker -a -m pytest --exclusive-faker-session tests/pytest/session_overrides
coverage report
[testenv:flake8]
basepython = python
deps =
flake8
flake8-commas
flake8-comprehensions
commands =
flake8 faker tests
[testenv:checkmanifest]
basepython = python
deps =
check-manifest
commands =
check-manifest
[testenv:isort]
deps =
isort
commands =
{envpython} -m isort --check-only --diff .
[testenv:32bit]
basepython = python
passenv = TEST_32BIT
commands = ./build32bit.sh
[testenv:alpine]
basepython = python
passenv = TEST_ALPINE
commands = ./build-alpine.sh
[flake8]
max-line-length = 120
[check-manifest]
ignore =
faker/sphinx
faker/sphinx/*
tests/sphinx
tests/sphinx/*
[coverage:run]
relative_files = True