python-zulip-api/.travis.yml
Robert Hönig 4ca11fdd67 Make venv creation with Python 2 harder.
Python 2 venvs can now only be created with
tools/provision --force.
2017-11-30 02:07:55 -08:00

21 lines
382 B
YAML

language: python
python:
- "3.4"
- "3.5"
- "3.6"
env: TEST_SUITE=test-main
matrix:
include:
- python: "2.7"
env: TEST_SUITE=test-py2-legacy-support
- python: "3.6"
env: TEST_SUITE=test-static-analysis
install:
- tools/provision --force
- source zulip-api-py*-venv/bin/activate
script:
- tools/$TEST_SUITE
after_success:
- pip install codecov
- codecov