import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo

This commit is contained in:
Roy Tam 2018-01-19 03:59:58 +08:00
commit dcd9973243
150858 changed files with 23884658 additions and 0 deletions

View file

@ -0,0 +1,35 @@
language: python
sudo: false
cache:
directories:
- $HOME/.cache/pip
matrix:
include:
- python: 2.7
env: TOXENV=py27
- python: 3.5
env: TOXENV=py35
- python: pypy
env: TOXENV=pypy
# An ugly hack needed to make py.test believe our top level can be
# imported (on Travis CI, we end up in a wpt-tools directory, and of
# course you cannot import a name including a hyphen in Python, so it
# ignores the fact we have a __init__.py at the top level).
before_install:
- mv `pwd` /tmp/tools
- cd /tmp/tools
- export TRAVIS_BUILD_DIR=/tmp/tools
install:
- pip install -U tox codecov
script:
- tox
after_success:
- coverage combine
- codecov