1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
language: python
addons:
apt:
update: true
sudo: true
cache: pip
python:
- 3.5
- 3.6
matrix:
include:
- python: 2.7
env: SELFTEST_OPTIONS="--coverage"
- python: 3.7
dist: xenial
script:
- make docs extensions
- BRZ_PLUGIN_PATH=-site:-user python -Werror -Wignore::ImportWarning -Wignore::PendingDeprecationWarning -Wignore::DeprecationWarning -Wignore::ResourceWarning -Wignore::UserWarning ./brz selftest --parallel=fork $SELFTEST_OPTIONS
install:
- sudo apt install python-all-dev python3-all-dev subunit
- travis_retry pip install -U setuptools
- travis_retry pip install -U pip coverage codecov flake8 testtools paramiko fastimport configobj cython testscenarios six docutils python-subunit dulwich $TEST_REQUIRE sphinx sphinx_epytext launchpadlib
after_success:
- codecov
|