forked from cobrateam/splinter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
39 lines (38 loc) · 1.37 KB
/
.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
# Copyright 2012-2016 splinter authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
sudo: required
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- ./.travis.chrome.sh
cache: pip
language: python
python:
- "2.7"
- "3.4"
env:
- DJANGO_VERSION=1.7.11 DRIVER=tests/test_djangoclient.py
- DJANGO_VERSION=1.8.7 DRIVER=tests/test_djangoclient.py
- DJANGO_VERSION=1.9 DRIVER=tests/test_djangoclient.py
- DJANGO_VERSION=1.10 DRIVER=tests/test_djangoclient.py
- DJANGO_VERSION=1.11 DRIVER=tests/test_djangoclient.py
- DJANGO_VERSION=1.8.7 DRIVER=tests/test_flaskclient.py
- DJANGO_VERSION=1.8.7 DRIVER=tests/test_webdriver_remote.py
- DJANGO_VERSION=1.8.7 DRIVER=tests/test_webdriver_firefox.py
- DJANGO_VERSION=1.8.7 DRIVER=tests/test_zopetestbrowser.py
- DJANGO_VERSION=1.8.7 DRIVER=tests/test_webdriver_phantomjs.py
- DJANGO_VERSION=1.8.7 DRIVER=tests/test_webdriver_chrome.py
- DJANGO_VERSION=1.8.7 DRIVER=tests/test_browser.py
- DJANGO_VERSION=1.8.7 DRIVER=tests/test_element_list.py
- DJANGO_VERSION=1.8.7 DRIVER=tests/test_request_handler.py
matrix:
exclude:
- python: 3.4
env: DRIVER=tests/test_zopetestbrowser.py
install:
- export PATH=$HOME:$PATH
- ./travis-install.bash
- make dependencies
script: ./run_tests.py -w ${DRIVER}
dist: trusty