Skip to content

Commit

Permalink
Travis: Don't install things that break in python 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasw committed Apr 6, 2014
1 parent 57ae989 commit 8231a93
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .travis.yml
Expand Up @@ -4,5 +4,8 @@ python:
- "2.7"
- "3.3"
- "pypy"
install:
- if [[ $TRAVIS_PYTHON_VERSION == '3.3' ]]; then pip install -r py3_requirements.txt; fi
- if [[ $TRAVIS_PYTHON_VERSION != '3.3' ]]; then pip install -r requirements.txt; fi
script:
- nosetests
10 changes: 10 additions & 0 deletions py3_requirements.txt
@@ -0,0 +1,10 @@
watchdog==0.7.1

# Testing requirements
pep8==1.3.3
pinocchio==0.4.1
frosted==1.4.0
nose==1.3.1

# Helper requirements
pyflakes==0.5.0
6 changes: 2 additions & 4 deletions requirements.txt
Expand Up @@ -4,11 +4,9 @@ watchdog==0.7.1
pep8==1.3.3
pinocchio==0.4.1
frosted==1.4.0
mock==1.0.1
nose==1.3.1
unittest2==0.5.1

# Helper requirements
pyflakes==0.5.0

# Remove these for python 3 testing
unittest2==0.5.1
mock==1.0.1

0 comments on commit 8231a93

Please sign in to comment.