forked from git-cola/git-cola
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
34 lines (31 loc) · 812 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
# Travis CI(http://travis-ci.org) configuration file
# https://docs.travis-ci.com/user/languages/python/
language: python
dist: bionic
sudo: required
python:
- "2.7"
- "3.6"
virtualenv:
system_site_packages: true
before_install:
# Git test setup
- git config --global user.name "Git Cola"
- git config --global user.email [email protected]
- sudo apt update
# Build dependencies
- sudo apt install -y gettext
- sudo apt install -y rsync
- sudo apt install -y python-sphinx
- sudo apt install -y python3-sphinx
# Runtime dependencies
- sudo apt install -y python-pyqt5
- sudo apt install -y python3-pyqt5
install:
# Test dependencies
- make requirements-dev
# Build translations
- make all
script:
# Run tests and static analysis checks
- make check V=2