forked from plotly/dash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
29 lines (25 loc) · 766 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
[tox]
envlist = py27,py36
[testenv]
deps = -rdev-requirements.txt
passenv = *
[testenv:py27]
basepython={env:TOX_PYTHON_27}
commands =
python --version
python -m unittest tests.development.test_base_component
python -m unittest tests.development.test_component_loader
python -m unittest tests.test_integration
python -m unittest tests.test_resources
flake8 dash setup.py
pylint dash setup.py
[testenv:py36]
basepython={env:TOX_PYTHON_36}
commands =
python --version
python -m unittest tests.development.test_base_component
python -m unittest tests.development.test_component_loader
python -m unittest tests.test_integration
python -m unittest tests.test_resources
flake8 dash setup.py
pylint dash setup.py