forked from SolidCode/SolidPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
27 lines (24 loc) · 683 Bytes
/
tox.ini
File metadata and controls
27 lines (24 loc) · 683 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
# content of: tox.ini , put in same dir as setup.py
[tox]
# envlist = py27,py36
skipsdist = True
envlist = py37
# formerly included ,pep8
[testenv]
whitelist_externals = poetry
commands=
poetry install -v
python solid/test/test_screw_thread.py
python solid/test/test_solidpython.py
python solid/test/test_utils.py
[testenv:docs]
deps=sphinx
commands = python setup.py build_sphinx
# [testenv:pep8]
# deps=flake8
# commands =
# flake8 solid
#
# [flake8]
# show-source = true
# ignore = E111,E113,E121,E122,E126,E127,E201,E202,E203,E221,E222,E231,E241,E261,E265,E303,E401,E501,E711,F401,F403,F841,H101,H201,H301,H302,H303,H305,H306,H307,H404,H405,W291,W293,W391