/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: Robert Collins
  • Date: 2010-05-06 11:08:10 UTC
  • mto: This revision was merged to the branch mainline in revision 5223.
  • Revision ID: robertc@robertcollins.net-20100506110810-h3j07fh5gmw54s25
Cleaner matcher matching revised unlocking protocol.

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