diff options
-rw-r--r-- | .travis.yml | 3 | ||||
-rw-r--r-- | requirements.txt | 1 | ||||
-rw-r--r-- | tox.ini | 1 |
3 files changed, 2 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 4ceda05a..42051dec 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,13 +12,14 @@ python: - pypy install: - - pip install -r requirements.txt + - if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi - python setup.py clean develop before_script: - pwd - ls -l - coverage debug sys + - if [[ $TRAVIS_PYTHON_VERSION == 'pypy' ]]; then export COVERAGE_NO_EXTENSION=1; fi script: - python igor.py zip_mods install_egg diff --git a/requirements.txt b/requirements.txt index 58828ab7..d13259a3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,4 +3,3 @@ mock pylint sphinx tox -unittest2 @@ -38,7 +38,6 @@ deps = deps = nose mock - unittest2 gevent eventlet |