Fix tests for python 3

main
Fabien Benureau 9 years ago
parent 69dc3a1690
commit 220e5ad9a8

@ -9,4 +9,4 @@ install:
- "pip install pyfakefs"
- "python setup.py install"
# command to run tests
script: nosetests
script: python -m unittest discover

@ -0,0 +1,4 @@
import sys, os
this_dir = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, this_dir)
Loading…
Cancel
Save