-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy path.travis.yml
45 lines (35 loc) · 804 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
language: python
script:
- python setup.py test
notifications:
email:
on_success: change
on_failure: change
after_success:
- coveralls
branches:
except:
- gh-pages
dist: xenial
env:
- MOZ_HEADLESS=1
addons:
firefox: latest
services:
- xvfb
matrix:
include:
- python: 3.5
sudo: false
- python: 3.6
sudo: false
- python: 3.7
sudo: true
# Handle git submodules yourself
git:
submodules: false
# Use sed to replace the SSH URL with the public URL, then initialize submodules
before_install:
- sed -i 's/[email protected]:/https:\/\/github.com\//' .gitmodules
- git submodule update --init --recursive
- google-chrome-stable --headless --disable-gpu --remote-debugging-port=9222 http://localhost &