File: .travis.yml

package info (click to toggle)
breezy 3.0.0~bzr7290-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 39,840 kB
  • sloc: python: 252,375; ansic: 2,772; makefile: 400; sh: 284; lisp: 107
file content (29 lines) | stat: -rw-r--r-- 826 bytes parent folder | download
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