forked from evonove/django-money-rates
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dad4515
commit ea8faf5
Showing
1 changed file
with
25 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,34 @@ | ||
# Config file for automatic testing at travis-ci.org | ||
|
||
language: python | ||
|
||
python: | ||
- "3.3" | ||
- "2.7" | ||
- "3.5" | ||
|
||
sudo: false | ||
|
||
env: | ||
- TOXENV=py27-django18 | ||
- TOXENV=py27-django19 | ||
- TOXENV=py27-django110 | ||
- TOXENV=py27-djangomaster | ||
- TOXENV=py32-django18 | ||
- TOXENV=py33-django18 | ||
- TOXENV=py34-django18 | ||
- TOXENV=py34-django19 | ||
- TOXENV=py34-django110 | ||
- TOXENV=py34-djangomaster | ||
- TOXENV=py35-django18 | ||
- TOXENV=py35-django19 | ||
- TOXENV=py35-django110 | ||
- TOXENV=py35-djangomaster | ||
|
||
matrix: | ||
fast_finish: true | ||
|
||
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors | ||
install: | ||
- pip install -r requirements-test.txt | ||
- pip install tox "virtualenv<14" | ||
- pip install coveralls | ||
|
||
# command to run tests, e.g. python setup.py test | ||
script: | ||
- coverage run -a runtests.py | ||
- tox | ||
|
||
after_success: | ||
after_script: | ||
- coveralls |