forked from python-trio/trio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
40 lines (37 loc) · 1.23 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
language: python
dist: xenial
matrix:
include:
# The pypy tests are slow, so we list them first
- python: pypy3
- language: generic
env: PYPY_NIGHTLY_BRANCH=py3.6
# Qemu tests are also slow
# The unique thing this provides is testing on the given distro's
# kernel, which is important when we use new kernel features. This
# is also good for testing the latest openssl etc., and getting
# early warning of any issues that might happen in the next Ubuntu
# LTS.
- language: generic
# We use bionic for the host, b/c rumor says that Travis's
# 'bionic' systems have nested KVM enabled.
dist: bionic
env:
- "JOB_NAME='Ubuntu 19.10, full VM'"
- "VM_IMAGE=https://cloud-images.ubuntu.com/eoan/current/eoan-server-cloudimg-amd64.img"
# 3.5.0 and 3.5.1 have different __aiter__ semantics than all
# other versions, so we need to test them specially. Travis's
# newer images only provide 3.5.2+, so we have to request the old
# 'trusty' images.
- python: 3.5.0
dist: trusty
- python: 3.5-dev
- python: 3.6-dev
- python: 3.7-dev
- python: 3.8-dev
- python: nightly
script:
- ./ci.sh
branches:
except:
- /^dependabot/.*/