Skip to content

Commit

Permalink
Updated .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
leekchan committed Nov 4, 2014
1 parent f94dcc1 commit 0960537
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Expand Up @@ -6,13 +6,13 @@ python:
- 3.4

install:
- if [[ $TRAVIS_PYTHON_VERSION == 2* ]]; then pip install -r tests/requirements/py2.txt
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then pip install -r tests/requirements/py3.txt
- if [[ $TRAVIS_PYTHON_VERSION == 2* ]]; then pip install -r tests/requirements/py2.txt; fi
- if [[ $TRAVIS_PYTHON_VERSION == 3* ]]; then pip install -r tests/requirements/py3.txt; fi
- pip install coveralls

script:
- cd tests
- PYTHONPATH=..:$PYTHONPATH ./runtests.py
- PYTHONPATH=..:$PYTHONPATH coverage run ./runtests.py --settings=test_sqlite

after_success:
coveralls
Expand Down

0 comments on commit 0960537

Please sign in to comment.