~twom/loggerhead/side-by-side-js-fix

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
language: python
addons:
  apt:
    update: true
sudo: false
cache: pip
git:
  depth: false

matrix:
  include:
    - python: 2.7
      env: TAL_VERSION=4.3
    - python: 3.5
      env: TAL_VERSION=5.2
    - python: 3.6
      env: TAL_VERSION=5.2

script:
  - python -m coverage run -p -m unittest loggerhead.tests.test_suite

install:
  - sudo apt install python-all subunit python-testtools adduser libjs-yui3-min
  - travis_retry pip install -U setuptools
  - travis_retry pip install -U pip coverage codecov flake8 testtools configobj cython testscenarios six docutils python-subunit dulwich bzr+lp:brz pygments simplejson paste http://www.owlfish.com/software/simpleTAL/downloads/SimpleTAL-$TAL_VERSION.tar.gz bleach

after_success:
  - codecov