Skip to content

Commit

Permalink
simplify .travis.yaml from unnecessary options
Browse files Browse the repository at this point in the history
removes site-packages, causes errors on most pythons now
add python 3.4, horay.
don't install python and python3-yaml,
  installing coveralls is sufficient
  • Loading branch information
jquast committed May 27, 2014
1 parent ca82e90 commit 3f9cdd4
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,19 @@ python:
- 2.7
- 3.2
- 3.3
- 3.4
- pypy

virtualenv:
system_site_packages: true

before_install:
- sudo apt-get install python-yaml python3-yaml
install:
- export PYTHONIOENCODING=UTF8
- python setup.py install
- pip install coveralls --use-mirrors
- pip install coveralls

before_script:
- source test.env

script:
- coverage run tools/testall.py
- coverage run -p tools/testall.py

after_success:
- coverage combine
Expand Down

0 comments on commit 3f9cdd4

Please sign in to comment.