mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-15 00:03:28 +01:00
update pip and setuptools when running install.sh found in .travis use xenial removed trailing dash only run webrecorder-tests using chrome and firefox only run webrecorder-tests using pywbtest and chrometest marker expression
47 lines
560 B
YAML
47 lines
560 B
YAML
language: python
|
|
|
|
python:
|
|
- "2.7"
|
|
- "3.5"
|
|
- "3.6"
|
|
|
|
dist: xenial
|
|
|
|
addons:
|
|
chrome: stable
|
|
firefox: latest
|
|
sauce_connect: true
|
|
|
|
env:
|
|
- WR_TEST=no
|
|
- WR_TEST=yes
|
|
|
|
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
|
|
sudo: required
|
|
|
|
install:
|
|
- ./.travis/install.sh
|
|
|
|
before_install:
|
|
- "sysctl kernel.unprivileged_userns_clone=1"
|
|
- "export DISPLAY=:99.0"
|
|
- "sh -e /etc/init.d/xvfb start"
|
|
|
|
script:
|
|
- ./.travis/test.sh
|
|
|
|
after_success:
|
|
- codecov
|
|
|
|
matrix:
|
|
exclude:
|
|
- env: WR_TEST=yes
|
|
python: "2.7"
|
|
- env: WR_TEST=yes
|
|
python: "3.5"
|
|
|