diff options
| author | Alexis Metaireau <alexis@notmyidea.org> | 2017-03-28 20:23:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-03-28 20:23:50 +0200 |
| commit | 9a1708ecf60d8dce5fac357c886891874091288d (patch) | |
| tree | 330598667099eb1ad3ae54b270d2fbb446716f31 | |
| parent | 42c9af528fc9779451c1ad7528648ab6f6e12193 (diff) | |
| parent | 9e30f3bb99f6f833b0afe7d3513bc3dc4498cd74 (diff) | |
| download | ihatemoney-mirror-9a1708ecf60d8dce5fac357c886891874091288d.zip ihatemoney-mirror-9a1708ecf60d8dce5fac357c886891874091288d.tar.gz ihatemoney-mirror-9a1708ecf60d8dce5fac357c886891874091288d.tar.bz2 | |
Merge pull request #188 from JocelynDelalande/travis-tox
Make travis use tox
| -rw-r--r-- | .travis.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml index e0b809a..8536228 100644 --- a/.travis.yml +++ b/.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 |
