1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
language: python
addons:
apt:
update: true
sudo: false
cache: pip
git:
depth: false
python:
- 2.7
script:
- make check
install:
- sudo apt install python-all subunit python-testtools adduser libjs-yui3-min
- travis_retry pip install -U setuptools
- travis_retry pip install -U pip coverage codecov flake8 testtools configobj cython testscenarios six docutils python-subunit dulwich bzr+lp:brz pygments simplejson paste http://www.owlfish.com/software/simpleTAL/downloads/SimpleTAL-4.3.tar.gz
after_success:
- codecov
|