/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: Gustav Hartvigsson
  • Date: 2021-01-09 21:36:27 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20210109213627-h1xwcutzy9m7a99b
Added 'Case Preserving Working Tree Use Cases' from Canonical Wiki

* Addod a page from the Canonical Bazaar wiki
  with information on the scmeatics of case
  perserving filesystems an a case insensitive
  filesystem works.
  
  * Needs re-work, but this will do as it is the
    same inforamoton as what was on the linked
    page in the currint documentation.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
language: python
2
 
addons:
3
 
  apt:
4
 
    update: true
5
 
sudo: true
6
 
cache: pip
7
 
 
8
 
python:
9
 
  - 3.5
10
 
  - 3.6
11
 
 
12
 
matrix:
13
 
  include:
14
 
    - python: 2.7
15
 
      env: SELFTEST_OPTIONS="--coverage"
16
 
    - python: 3.7
17
 
      dist: xenial
18
 
    - python: 3.8
19
 
      dist: xenial
20
 
 
21
 
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
24
 
 
25
 
install:
26
 
  - sudo apt install python-all-dev python3-all-dev subunit quilt
27
 
  - 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
29
 
 
30
 
after_success:
31
 
  - codecov