mirror of
https://github.com/servo/servo.git
synced 2025-10-04 02:29:12 +01:00
24 lines
278 B
YAML
24 lines
278 B
YAML
language: python
|
|
|
|
sudo: false
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.cache/pip
|
|
|
|
matrix:
|
|
include:
|
|
- python: 2.7
|
|
env: TOXENV=py27
|
|
- python: pypy
|
|
env: TOXENV=pypy
|
|
|
|
install:
|
|
- pip install -U tox codecov
|
|
|
|
script:
|
|
- tox
|
|
|
|
after_success:
|
|
- coverage combine
|
|
- codecov
|