forked from gitter-badger/hackedit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
29 lines (24 loc) · 827 Bytes
/
.travis.yml
File metadata and controls
29 lines (24 loc) · 827 Bytes
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
language: python
python:
- "3.5"
env:
- QT_API=pyqt5
before_install:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
install:
# install libegl1-mesa package for the missing libEGL shared object that prevents qt from starting
- sudo apt-get update
- sudo apt-get --yes --force-yes install libegl1-mesa gnome-icon-theme-full --fix-missing
# make sure pip is up to date so that it can install wheels
- pip install pip coveralls --upgrade
- pip install -e .
- pip install -r requirements-dev.txt
- python setup.py install_data
# install official plugins to improve coverage of integration tests
- pip install git+https://github.com/HackEdit/hackedit-python.git
- pip install git+https://github.com/HackEdit/hackedit-cobol.git
script:
- py.test --cov hackedit
after_success:
- coveralls