diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2020-04-02 16:24:17 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-02 16:24:17 +0000 |
| commit | 65e8af62b18d5776ebed02ae9d22e137d7f421ca (patch) | |
| tree | 93e8a3a784577d2d1f3069231feb85c54f11829e /.travis.yml | |
| parent | 07932951f2c5d5ab7c89a78f389db2a9008d7631 (diff) | |
| parent | 70d114fab53ec0d826ae30f8dc48ee663c6cc3c4 (diff) | |
Merge pull request #1910 from return42/rfc-travis
improve travis build
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml index 8c3f7285c..76a20b00d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,22 +1,24 @@ +os: linux +dist: bionic language: python -sudo: false cache: - directories: - $HOME/.cache/pip - addons: firefox: "latest" install: - - make install - - make gecko.driver - - make node.env - - local/py3/bin/pip install codecov + - env + - which python; python --version + - make V=1 install + - make V=1 gecko.driver + - make V=1 node.env + - make V=1 travis.codecov script: - - make themes - - make test + - make V=1 themes + - make V=1 test after_success: - - make test.coverage + - make V=1 test.coverage - codecov stages: @@ -27,6 +29,7 @@ stages: jobs: include: - python: "2.7" + env: PY=2 - python: "3.5" - python: "3.6" - stage: docker |