Skip to content

Commit

Permalink
update travis config to use debian python and install mock
Browse files Browse the repository at this point in the history
  • Loading branch information
dirk-thomas committed May 1, 2014
1 parent b4f804d commit 327bfc5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
language: python
python:
- "2.7"
- "2.7_with_system_site_packages"
- "3.3"
# command to install dependencies
install:
- pip install argparse catkin-pkg empy nose
# fetch "normal" debian python for 3.3
- if [ "$TRAVIS_PYTHON_VERSION" == "3.3" ]; then sudo add-apt-repository -y ppa:fkrull/deadsnakes && sudo apt-get -y update && sudo apt-get install python3.3 python3.3-dev && virtualenv -p /usr/bin/python3.3 ~/virtualenvs/3.3_debian && source ~/virtualenvs/3.3_debian/bin/activate; fi
- pip install argparse catkin-pkg empy mock nose
# command to run tests
script:
- nosetests test/unit_tests test/local_tests
Expand Down

0 comments on commit 327bfc5

Please sign in to comment.