-
Notifications
You must be signed in to change notification settings - Fork 12
/
.travis.yml
34 lines (30 loc) · 906 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
language: python
install:
- pip install -r dev-requirements.txt -U pytest==$PYTEST_VERSION
env:
global:
- secure: "GYMlRL/xmnVjC2+RljsZj0aVNIOv/d7x36UBT5DNo+FlY4jGHin9nb3tckKzwh+VgNexcZ6O4UY6CRHZdTuwME1LlI4Mywx44y48oomA6lz1RMZI6OP9CF3SbcEl/Qs++sS/USEQNGB9IdWnF11dqbJ7XOI2E9CZk4bX9ZLQVdA="
- PYTEST_VERSION=6.0.1
- PLUGINCOMPAT_SITE=http://plugincompat.herokuapp.com
jobs:
include:
- env: RUN_COMMAND="python run.py"
python: '3.6'
- env: RUN_COMMAND="python run.py"
python: '3.7'
- env: RUN_COMMAND="python run.py"
python: '3.8'
- env: RUN_COMMAND="pytest"
python: '3.6'
- env: RUN_COMMAND="pytest"
python: '3.7'
- env: RUN_COMMAND="pytest"
python: '3.8'
- env: RUN_COMMAND="pre-commit run --all-files --show-diff-on-failure"
python: '3.7'
script:
- $RUN_COMMAND
branches:
only:
- master
- /feature-.*/