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