forked from theelous3/asks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
46 lines (38 loc) · 1.09 KB
/
.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
40
41
42
43
44
45
46
language: python
dist: trusty
sudo: false
jobs:
include:
- python: "3.7"
dist: xenial
sudo: required
# - python: "3.5" # at some point we might want to re-enable these. Need to break up the tests.
# - python: "3.6" # at some point we might want to re-enable these. Need to break up the tests.
install:
- pip install git+https://github.com/agronholm/anyio.git
- pip install overly curio
- pip install "pytest >= 3.7.2"
- pip install -e .
script:
- pytest tests --verbose --tb=native
# - pylint asks tests
# temp disable until bugfix for
# AttributeError: 'FunctionDef' object has no attribute 'ancestors'
notifications:
email:
on_success: change
on_failure: change
irc:
channels:
- "irc.freenode.net#8banana"
skip_join: true
on_success: change
on_failure: always
template:
- "%{repository}#%{build_number} (%{branch} - %{commit} : %{author}): %{message} %{build_url}"
matrix:
fast_finish: true
allow_failures:
- python: "nightly"
# - python: "3.5" # The test suite uses 3.7.x features
# - python: "3.6"