summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorSteven Hiscocks <steven@hiscocks.me.uk>2013-04-20 20:17:36 +0100
committerSteven Hiscocks <steven@hiscocks.me.uk>2013-04-20 20:17:36 +0100
commit55810a3c30a745d5b099b40c42d0446b492ea995 (patch)
tree74391f7f9c91b9bdee5edcb6d1f829b0ae77b090 /.travis.yml
parent9e684abad7b88e93cd66962798723a72427fc819 (diff)
downloadfail2ban-55810a3c30a745d5b099b40c42d0446b492ea995.tar.gz
TST+RF: Add ability to execute test from setup.py with setuptools
Note that the fail2ban version can no longer be imported from "fail2ban.version", as this breaks 2to3 conversion for tests
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
1 files changed, 1 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml
index 3edadda1..8cfeeff1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -13,10 +13,8 @@ install:
- pip install pyinotify
- if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then sudo apt-get install -qq python-gamin; fi
- if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then pip install -q coveralls; fi
-before_script:
- - if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then ./fail2ban-2to3; fi
script:
- if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then export PYTHONPATH="$PYTHONPATH:/usr/share/pyshared:/usr/lib/pyshared/python2.7"; fi
- - if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then coverage run --rcfile=.travis_coveragerc bin/fail2ban-testcases; else python bin/fail2ban-testcases; fi
+ - if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then coverage run --rcfile=.travis_coveragerc setup.py test; else python setup.py test; fi
after_success:
- if [[ $TRAVIS_PYTHON_VERSION == 2.7 ]]; then coveralls; fi