mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-20 23:37:33 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
35
testing/web-platform/tests/tools/.travis.yml
Normal file
35
testing/web-platform/tests/tools/.travis.yml
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue