26 lines
386 B
YAML
26 lines
386 B
YAML
language: python
|
|
|
|
sudo: false
|
|
|
|
.mixins:
|
|
- &xenial
|
|
dist: xenial
|
|
|
|
jobs:
|
|
include:
|
|
- python: "2.7"
|
|
- python: "pypy"
|
|
- python: "3.2"
|
|
- python: "3.3"
|
|
- python: "3.4"
|
|
- python: "3.5"
|
|
- python: "3.6"
|
|
- <<: *xenial
|
|
python: "3.7"
|
|
- <<: *xenial
|
|
python: "3.8-dev"
|
|
- python: "nightly"
|
|
- python: "pypy3"
|
|
|
|
script:
|
|
- ./test/test_travis
|