forked from betcode-org/betfair
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
39 lines (35 loc) · 884 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
35
36
37
38
39
language: python
sudo: false
install:
- travis_retry python setup.py install
- pip install coveralls
jobs:
include:
- name: "Tests: python 3.6"
python: 3.6
script:
- coverage run --source=betfairlightweight setup.py test
- name: "Tests: python 3.7"
python: 3.7
dist: xenial
script:
- coverage run --source=betfairlightweight setup.py test
- name: "Tests: python 3.8"
python: 3.8
dist: xenial
script:
- coverage run --source=betfairlightweight setup.py test
- name: "Tests: python 3.9"
python: 3.9
dist: xenial
script:
- coverage run --source=betfairlightweight setup.py test
- name: "Lint: python 3.7"
python: 3.7
dist: xenial
install:
- pip install black
script:
- black --check --diff .
after_success:
coveralls