forked from OpenShot/openshot-qt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
52 lines (47 loc) · 1.09 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
# Run in default virtualenv, but with access to Python packages
# installed by apt
language: python
virtualenv:
system_site_packages: true
addons:
apt:
sources:
- sourceline: 'ppa:openshot.developers/libopenshot-daily'
packages:
- libopenshot-audio-dev
- libopenshot-dev
- libssl-dev
- python3-openshot
- python3-pip
- python3-setuptools
- python3-pyqt5
- python3-pyqt5.qtmultimedia
- python3-pyqt5.qtopengl
- python3-pyqt5.qtsvg
- python3-pyqt5.qtwebkit
- python3-requests
- python3-xdg
- python3-zmq
- qttranslations5-l10n
- xvfb
matrix:
include:
- name: "Python 3.5 (Ubuntu 16.04 Xenial)"
os: linux
dist: xenial
python: 3.5
- name: "Python 3.6 (Ubuntu 18.04 Bionic)"
os: linux
dist: bionic
python: 3.6
install:
- pip3 install cx-freeze
script:
- python3 freeze.py build
- xvfb-run --auto-servernum --server-num=1 --server-args "-screen 0 1920x1080x24" python3 src/tests/query_tests.py
notifications:
email: true
env:
global:
- TRAVIS_LIBOPENSHOT=TEST
- LANG="en_US.UTF-8"