mirror of
https://github.com/theupdateframework/python-tuf
synced 2026-05-24 10:08:28 +00:00
Set Python 3.5 as the base interpreter to fix the following build failure: py26: commands succeeded py27: commands succeeded py33: commands succeeded py34: commands succeeded ERROR: py35: InterpreterNotFound: python3.5
22 lines
209 B
YAML
22 lines
209 B
YAML
language: python
|
|
|
|
sudo: false
|
|
|
|
cache: pip
|
|
|
|
python:
|
|
- "3.5"
|
|
|
|
before_script:
|
|
- pip install -U pip wheel tox
|
|
|
|
script: tox
|
|
|
|
after_success:
|
|
- cd tests
|
|
- coveralls
|
|
- cd -
|
|
|
|
branches:
|
|
only:
|
|
- develop
|