Skip to content

Commit

Permalink
update travis build
Browse files Browse the repository at this point in the history
  • Loading branch information
thijstriemstra committed Apr 3, 2015
1 parent 3e382b1 commit 0a0d950
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@ language: python
python:
- "2.7"
- "3.4"
sudo: false
cache: pip
install:
- "pip install -r requirements/production.txt"
- "pip install -r requirements/testing.txt"
- "pip install ."
script:
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then tox -e py27,coverage; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.4' ]]; then tox -e py34; fi
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then tox -e py27; fi
- if [[ $TRAVIS_PYTHON_VERSION == '2.7' ]]; then tox -e coverage; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.4' ]]; then tox -e py34; fi
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
include README.rst LICENSE tox.ini .coveragerc runtests.py

recursive-include requirements *

recursive-include require_license *
prune require_license/tests/static
prune require_license/tests/media

recursive-include doc *
prune doc/_build
Expand Down

0 comments on commit 0a0d950

Please sign in to comment.