bumpver/.travis.yml

25 lines
379 B
YAML
Raw Normal View History

2018-09-05 08:43:36 +02:00
os: linux
2018-09-03 09:19:27 +02:00
language: python
2018-09-05 08:43:36 +02:00
cache: pip
2018-09-03 09:19:27 +02:00
2018-09-05 08:43:36 +02:00
before_install:
2018-09-05 08:50:32 +02:00
- sudo apt-get install -y git mercurial
2018-09-05 09:57:52 +02:00
- sudo bash travis_build_wheel.sh
2018-09-03 09:19:27 +02:00
script:
2018-09-05 09:01:54 +02:00
- python --version
2018-09-05 09:57:52 +02:00
- bash travis_run_tests.sh
2018-09-05 21:54:34 +02:00
matrix:
include:
- python: "3.6"
- python: "3.5"
- python: "3.4"
- python: "2.7"
- python: "pypy3.5"
- python: "pypy2.7"
- python: "3.7"
dist: xenial
sudo: true