Skip to content

Commit

Permalink
make it possible to run tox tests via tox without installing numpy, e…
Browse files Browse the repository at this point in the history
…tc in virtualenv
  • Loading branch information
kmike committed Nov 29, 2012
1 parent cbb0666 commit edd4e1e
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py26,py27,py32,py33,pypy
envlist = py26,py27,py32,py33,pypy,py27-nodeps,py33-nodeps

[testenv]

Expand Down Expand Up @@ -48,3 +48,22 @@ commands =

; python runtests.py --with-coverage --cover-inclusive --cover-package=nltk --cover-html --cover-html-dir={envdir}/docs []
python runtests.py []


[testenv:py27-nodeps]
basepython = python2.7

deps =
nose >= 1.2.1

commands =
python runtests.py []

[testenv:py33-nodeps]
basepython = python3.3
deps =
nose >= 1.2.1

commands =
python runtests.py []

0 comments on commit edd4e1e

Please sign in to comment.