-
Notifications
You must be signed in to change notification settings - Fork 1
/
tox.ini
44 lines (37 loc) · 860 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
[tox]
skip_missing_interpreters=true
envlist = py27, py35, flake8
# trick to enable pre-installation of numpy and cython
indexserver =
preinstall = https://pypi.python.org/simple
[testenv:py27]
deps =
:preinstall: numpy==1.12.1
-r{toxinidir}/requirements.txt
mock==2.0.0
Unipath==1.1
ipdb
antlr4-python2-runtime==4.5.3
[testenv:py35]
deps =
:preinstall: numpy==1.12.1
-r{toxinidir}/requirements.txt
mock==2.0.0
Unipath==1.1
ipdb
antlr4-python3-runtime==4.5.3
[testenv:flake8]
basepython=python
deps=
:preinstall: numpy==1.12.1
flake8
commands=flake8 scikit_fuzzy_fcl
[testenv]
setenv =
PYTHONPATH = {toxinidir}:{toxinidir}/scikit_fuzzy_fcl
commands =
python setup.py clean --all
python setup.py test
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/requirements_dev.txt