/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: Jelmer Vernooij
  • Date: 2018-05-06 11:48:54 UTC
  • mto: This revision was merged to the branch mainline in revision 6960.
  • Revision ID: jelmer@jelmer.uk-20180506114854-h4qd9ojaqy8wxjsd
Move .mailmap to root.

Show diffs side-by-side

added added

removed removed

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