Skip to content

Commit

Permalink
Another attempt at making sane travis builds
Browse files Browse the repository at this point in the history
  • Loading branch information
lepinkainen committed Dec 28, 2015
1 parent 837a24a commit 6fdbfc0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
OBlanguage: python
language: python
sudo: false
python:
- "2.7"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install:
- pip install --user --upgrade pip setuptools
- pip install --user -r requirements.txt
- pip install --user pytest pytest-pep8 pytest-flakes nose # we still need nose for the _eq functions for now
- pip install --upgrade pip setuptools
- pip install -r requirements.txt
- pip install pytest pytest-pep8 pytest-flakes nose # we still need nose for the _eq functions for now
# command to run tests, e.g. python setup.py test
before_script: export PYTHONPATH=$PYTHONPATH:$(pwd)
script: py.test --pep8 --flakes
Expand Down

0 comments on commit 6fdbfc0

Please sign in to comment.