mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-04-28 17:32:38 +02:00
Make travis use tox
So that we are consistent between dev test env and CI test env. The use of `TOXENV` is to keep travis running the several envs in parallel.
This commit is contained in:
parent
42c9af528f
commit
9e30f3bb99
1 changed files with 7 additions and 7 deletions
14
.travis.yml
14
.travis.yml
|
@ -1,8 +1,8 @@
|
|||
language: python
|
||||
python:
|
||||
- "2.7"
|
||||
- "3.5"
|
||||
# command to install dependencies
|
||||
install: "pip install -r requirements.txt"
|
||||
# command to run tests
|
||||
script: cd budget && python tests.py
|
||||
script: tox
|
||||
install:
|
||||
- pip install tox
|
||||
env:
|
||||
- TOXENV=py27
|
||||
- TOXENV=py35
|
||||
- TOXENV=docs
|
||||
|
|
Loading…
Reference in a new issue