/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to .travis.yml

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-11-16 18:59:44 UTC
  • mfrom: (7143.15.15 more-cleanups)
  • Revision ID: breezy.the.bot@gmail.com-20181116185944-biefv1sub37qfybm
Sprinkle some PEP8iness.

Merged from https://code.launchpad.net/~jelmer/brz/more-cleanups/+merge/358611

Show diffs side-by-side

added added

removed removed

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