/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-19 13:16:11 UTC
  • mto: (6968.4.3 git-archive)
  • mto: This revision was merged to the branch mainline in revision 6972.
  • Revision ID: jelmer@jelmer.uk-20180519131611-l9h9ud41j7qg1m03
Move tar/zip to breezy.archive.

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
git:
 
8
  depth: false
 
9
 
 
10
python:
 
11
  - 3.5
 
12
  - 3.6
 
13
  - 3.6-dev
 
14
 
 
15
env:
 
16
  - SELFTEST_OPTIONS="--load-list python3.passing"
 
17
    EXTRA_MAKE_ARGS=""
 
18
 
 
19
matrix:
 
20
  include:
 
21
    - python: 2.7
 
22
      env: SELFTEST_OPTIONS="--coverage"
 
23
           EXTRA_MAKE_ARGS="extensions"
 
24
 
 
25
script:
 
26
  - make docs $EXTRA_MAKE_ARGS
 
27
  - BRZ_PLUGIN_PATH=-site:-user python -Werror -Wignore::ImportWarning -Wignore::PendingDeprecationWarning -Wignore::DeprecationWarning ./brz selftest --parallel=fork $SELFTEST_OPTIONS
 
28
 
 
29
install:
 
30
  - sudo apt install python-all-dev python3-all-dev subunit
 
31
  - travis_retry pip install -U setuptools
 
32
  - travis_retry pip install -U pip coverage codecov flake8 testtools paramiko fastimport configobj cython testscenarios six docutils python-subunit dulwich $TEST_REQUIRE
 
33
 
 
34
after_success:
 
35
  - codecov