-
Notifications
You must be signed in to change notification settings - Fork 773
Expand file tree
/
Copy path.travis.yml
More file actions
48 lines (39 loc) · 885 Bytes
/
.travis.yml
File metadata and controls
48 lines (39 loc) · 885 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
sudo: false
language: python
python:
- 2.7
- 3.3
- 3.4
- 3.5
- 3.6
- 3.7-dev
matrix:
allow_failures:
- python: 3.7-dev
env:
global:
- LD_PRELOAD=/lib/x86_64-linux-gnu/libSegFault.so
- SEGFAULT_SIGNALS=all
- PYTHONUNBUFFERED=True
addons:
apt:
sources:
- mono
- mono-libtiff-compat
packages:
- mono-devel
- ca-certificates-mono
install:
- pip install pycparser coverage codecov
- coverage run setup.py build_ext --inplace
script:
- export PYTHONPATH=`pwd`:$PYTHONPATH
- python src/tests/runtests.py
# - mono ./packages/NUnit.Runners*/tools/nunit-console.exe src/embed_tests/bin/Python.EmbeddingTest.dll
after_success:
# Uncomment if need to geninterop, ie. py37 final
# - python tools/geninterop/geninterop.py
# Waiting on mono-cov support or SharpCover
- codecov
notifications:
email: false