a5708e4dde
Fixes #38.
27 lines
551 B
YAML
27 lines
551 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.4"
|
|
- "3.5"
|
|
- "3.6"
|
|
env: TEST_SUITE=test-main
|
|
matrix:
|
|
include:
|
|
- python: "3.6"
|
|
env: TEST_SUITE=lint
|
|
install:
|
|
# Install codecov, the library for the code coverage reporting tool we use
|
|
- pip install codecov
|
|
|
|
# Install pycodestyle, the library for checking pep8 code conformity.
|
|
- pip install pycodestyle==2.3.1
|
|
|
|
# Install all API packages
|
|
- pip install ./zulip
|
|
- pip install ./zulip_bots
|
|
- pip install ./zulip_botserver
|
|
script:
|
|
- tools/$TEST_SUITE
|
|
after_success:
|
|
- codecov
|