python-tuf/.travis.yml
Vladimir Diaz a5b98ae1e6
Fix before_script entries
Signed-off-by: Vladimir Diaz <vladimir.v.diaz@gmail.com>
2017-12-07 10:36:31 -05:00

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