forked from pyinstaller/pyinstaller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
178 lines (151 loc) · 4.85 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
language: python
branches:
except:
- /pyup\/.*/
# Make sure we are on Ubuntu 16.04. This fixes the following error, which
# appears on Trusty (Ubuntu 14.04) when testing Linux Python 3.5 and 3.6 with
# PyQt5 5.12: ``relocation error: /tmp/_MEIFdpiBr/libQt5DBus.so.5: symbol
# dbus_message_get_allow_interactive_authorization, version LIBDBUS_1_3 not
# defined in file libdbus-1.so.3 with link time reference``.
dist: xenial
# Cache pip packages. Explicitly name the pip-cache directory since we
# use a custom `install` step which annuls `cache: pip`.
cache:
directories:
- $HOME/.cache/pip
- $HOME/py37
os:
- linux
services:
# PyQt5 tests require a GUI. See https://docs.travis-ci.com/user/gui-and-headless-browsers/#using-services-xvfb.
- xvfb
jobs:
fast_finish: true
include:
# macOS is first to account for the delay in starting the build on macOS.
# This prevents the build from hanging on macOS as the last job to finish
# in a stage.
- stage: Test - PyInstaller
os: osx
language: minimal
cache:
directories:
- $HOME/Library/Caches/pip
script: &script-test-pyinstaller
# -n 3
# Run tests and speed them up by sending them to multiple CPUs.
#
# --maxfail 3
# End tests after 3 failures.
#
# --durations 10
# Print the 10 longest tests; see
# https://docs.pytest.org/en/latest/usage.html#profiling-test-execution-duration
- >
py.test -n 3 --maxfail 3 --durations 10
tests/unit tests/functional
--ignore tests/functional/test_libraries.py
- stage: Test - Libraries
os: osx
language: minimal
cache:
directories:
- $HOME/Library/Caches/pip
script: &script-test-libraries
- >
py.test -n 3 --maxfail 3 --durations 10
tests/functional/test_libraries.py
- &test-pyinstaller
stage: Test - PyInstaller
python: 2.7
script: *script-test-pyinstaller
- &test-libraries
stage: Test - Libraries
python: 2.7
# Run tests and speed them up by sending them to multiple CPUs.
script: *script-test-libraries
- &lint
stage: Lint
python: 2.7
script:
- >
if [ "$TRAVIS_PULL_REQUEST" != "false" ] ; then
git fetch origin $TRAVIS_BRANCH:$TRAVIS_BRANCH --depth 1 || travis_terminate 1;
flake8-diff -v -v -v $TRAVIS_BRANCH || travis_terminate 1;
fi
- <<: *test-pyinstaller
python: 3.5
- <<: *test-libraries
python: 3.5
- <<: *test-pyinstaller
python: 3.6
- <<: *test-libraries
python: 3.6
- <<: *lint
python: 3.6
# Building Python > 3.7 requires OpenSSL 1.0.2 (or 1.1), which is
# available in xenial (16.04 LTS) only.
- <<: *test-pyinstaller
python: 3.7
- <<: *test-libraries
python: 3.7
- <<: *test-pyinstaller
python: nightly
- <<: *test-libraries
python: nightly
allow_failures:
# Just tests how PyInstaller performs with upcoming Python
- python: "nightly"
addons:
# Python packages should be installed by "pip" via the "test/requirements-library.txt" specification.
apt:
packages:
# lxml dependencies.
- libxml2-dev
- libxslt1-dev
# pyttsx dependencies.
- libespeak1
# SciPy dependencies.
- gfortran
- libatlas-base-dev
# Per https://www.riverbankcomputing.com/pipermail/pyqt/2019-February/041363.html,
# PyQt5 5.12 needs a library not installed by default.
- libxkbcommon-x11-0
# See https://docs.travis-ci.com/user/installing-dependencies/#installing-packages-on-macos.
homebrew:
packages:
- python
# Update to Python 3.7 via homebrew.
# Disabled, since this takes a HUGE amount of test time.
#update: true
before_install:
# Activate a venv to ensure we're using the correct Python interpreter.
# Per http://steven.casagrande.io/articles/travis-ci-and-if-statements/,
# ensure the build fails for statements in an ``if`` clause.
- >
if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
python3 -m venv venv || travis_terminate 1;
source venv/bin/activate;
fi
install:
# Update pip.
- python -m pip install -U pip setuptools wheel | cat
# Install dependencies for tests.
- pip install --progress-bar=off -U -r tests/requirements-tools.txt -r tests/requirements-libraries.txt
# Compile bootloader
- cd bootloader
- python waf distclean all
- cd ..
# Install PyInstaller.
- pip install --progress-bar=off -e .
# Make sure the help options print.
- python -m pyinstaller -h
script:
- true
notifications:
irc:
channels:
- "irc.freenode.org#pyinstaller"
use_notice: true
# skip_join: true would require +n mode *not to be set on #pyinstaller
skip_join: false