-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtox.ini
50 lines (41 loc) · 823 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
[tox]
envlist =
py37,
pycodestyle
pydocstyle
[testenv]
commands =
python -c "import shutil, os.path; shutil.rmtree('_build') if os.path.isdir('_build') else None"
[MESSAGES CONTROL]
disable=W0212
[py]
deps=
pytest-cov
pytest-random
pytest-remove-stale-bytecode
pyspark==3.1.2
findspark
typeguard==2.9.1
[pycodestyle]
show-source=True
statistics=True
exclude=venv,.svn,CVS,.bzr,.hg,.git,__pycache__,.tox,setup.py,docs, features
[testenv:py37]
deps=
{[py]deps}
basepython = python3.7
[testenv:pypy3]
deps=
{[py]deps}
basepython = pypy3
[testenv:pycodestyle]
deps=
{[py]deps}
pycodestyle
basepython = python3.7
commands = pycodestyle --max-line-length=128 --first
[testenv:pydocstyle]
deps=
pydocstyle
commands = pydocstyle pysequila
basepython = python3.7