mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-07-21 03:48:43 +00:00
36 lines
679 B
YAML
36 lines
679 B
YAML
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
|