forked from PierreRaybaut/formlayout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
40 lines (33 loc) · 925 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
# https://travis-ci.org/PierreRaybaut/formlayout
language: python
sudo: required
env:
global:
- MINICONDA_VERSION="latest"
- MINICONDA_LINUX="Linux-x86_64"
- MINICONDA_OSX="MacOSX-x86_64"
matrix:
include:
- python: "2.7"
env: USE_QT_API=PyQt4
os: linux
- python: "3.5"
env: USE_QT_API=PyQt4
os: linux
- python: "2.7"
env: USE_QT_API=PyQt5
os: linux
- python: "3.5"
env: USE_QT_API=PyQt5
os: linux
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- chmod +x ./continuous_integration/travis/install.sh
install: source ./continuous_integration/travis/install.sh;
before_script:
- chmod +x ./continuous_integration/travis/main_test.sh
- chmod +x ./continuous_integration/travis/build_dist_test.sh
script:
- ./continuous_integration/travis/main_test.sh
- ./continuous_integration/travis/build_dist_test.sh