mirror of
https://github.com/TECHNOFAB11/bumpver.git
synced 2025-12-12 14:30:09 +01:00
24 lines
366 B
YAML
24 lines
366 B
YAML
os: linux
|
|
dist: xenial
|
|
sudo: true
|
|
|
|
language: python
|
|
cache: pip
|
|
|
|
python:
|
|
- "3.7"
|
|
# - "3.6"
|
|
# - "3.5"
|
|
# - "3.4" # not available for xenial
|
|
- "2.7"
|
|
|
|
before_install:
|
|
- sudo apt-get install -y git mercurial
|
|
- sudo bash travis_build_wheel.sh
|
|
|
|
install:
|
|
- pip install $(cat requirements-test.txt)
|
|
|
|
script:
|
|
- python --version
|
|
- bash travis_run_tests.sh
|