-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
38 lines (28 loc) · 745 Bytes
/
Copy pathtox.ini
File metadata and controls
38 lines (28 loc) · 745 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
28
29
30
31
32
33
34
35
36
37
38
[tox]
envlist = py25,py26,py27,pypy
[testenv]
; simplify numpy installation
setenv =
LAPACK=
ATLAS=None
deps =
; epydoc
numpy
nose
; pysvmlight requires mercurial to install (and even if Mercurial is installed
; globally it may not be available for a given python interpreter) so it is disabled now
;
; hg+https://bitbucket.org/wcauchois/pysvmlight
changedir = nltk/test
commands =
; scipy and scikit-learn requires numpy even to run setup.py so
; they can't be installed in one command
pip install --download-cache={toxworkdir}/_download scipy scikit-learn
python runtests.py
[testenv:pypy]
; numpy and pysvmlight don't work with pypy
deps =
epydoc
nose
commands =
python runtests.py