mirror of
https://github.com/theupdateframework/python-tuf
synced 2026-05-24 10:08:28 +00:00
29 lines
330 B
YAML
29 lines
330 B
YAML
language: python
|
|
dist: trusty
|
|
sudo: false
|
|
cache: pip
|
|
python: 3.6
|
|
|
|
env:
|
|
- TOXENV=py27
|
|
- TOXENV=py34
|
|
- TOXENV=py36
|
|
|
|
before_script:
|
|
- pip install pylint bandit tox
|
|
|
|
script:
|
|
- pylint tuf
|
|
- bandit -r tuf
|
|
- tox
|
|
|
|
after_success:
|
|
- cd tests
|
|
- coveralls
|
|
- cd -
|
|
|
|
branches:
|
|
only:
|
|
- develop
|
|
- pylint
|
|
- bandit
|