forked from spyder-ide/spyder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
62 lines (55 loc) · 1.49 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# After changing this file, check it on http://yaml-online-parser.appspot.com/
language: python
env:
global:
- MINICONDA_VERSION="latest"
- MINICONDA_LINUX="Linux-x86_64"
- MINICONDA_OSX="MacOSX-x86_64"
matrix:
include:
# Linux using miniconda
- python: "2.7"
env: USE_QT_API=PyQt4 USE_CONDA=true
os: linux
- python: "3.3"
env: USE_QT_API=PyQt4 USE_CONDA=true
os: linux
- python: "3.4"
env: USE_QT_API=PyQt4 USE_CONDA=true
os: linux
#- python: "2.7"
# env: USE_QT_API=PyQt5 USE_CONDA=true
# os: linux
#- python: "3.3"
# env: USE_QT_API=PyQt5 USE_CONDA=true
# os: linux
#- python: "3.4"
# env: USE_QT_API=PyQt5 USE_CONDA=true
# os: linux
#- python: "2.7"
# env: USE_QT_API=PySide USE_CONDA=true
# os: linux
# Linux using apt-get/pip packages
#- python: "2.7"
# env: USE_QT_API=PyQt4 USE_CONDA=false
# os: linux
#- python: "2.7"
# env: USE_QT_API=PySide USE_CONDA=false
# os: linux
#- python: "3.3"
# env: USE_QT_API=PySide USE_CONDA=false
# os: linux
#- python: "3.4"
# env: USE_QT_API=PySide USE_CONDA=false
# os: linux
before_install:
- sudo apt-get update
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
install:
- ./continuous_integration/travis_install.sh;
- export PATH="$HOME/miniconda/bin:$PATH";
- source activate test-environment;
- QT_API=$USE_QT_API;
script:
- python bootstrap.py --test-travis 30