forked from GetStream/stream-python
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
38 lines (35 loc) · 835 Bytes
/
.travis.yml
File metadata and controls
38 lines (35 loc) · 835 Bytes
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
language: python
sudo: false
python:
- 2.7
- 3.3
- 3.4
- 3.5
# These are allowed to fail
- '3.5-dev' # 3.5 development branch
- '3.6-dev' # 3.6 development branch
- 'nightly' # currently points to 3.7-dev
- 'pypy'
- 'pypy3'
matrix:
fast_finish: true
allow_failures:
- python: '3.5-dev' # 3.5 development branch
- python: '3.6-dev' # 3.6 development branch
- python: 'nightly'
- python: 'pypy'
- python: 'pypy3'
cache: pip
notifications:
email:
install:
- pip install -r dev_requirements.txt
script:
- py.test stream/tests.py -lv --cov stream --cov-report term-missing
after_script:
# ensure we validate against pep standards
- "pep8 --exclude=migrations --ignore=E501,E225,W293 stream"
after_success:
- coveralls