-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
49 lines (40 loc) · 804 Bytes
/
.travis.yml
File metadata and controls
49 lines (40 loc) · 804 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
osx_image: xcode9.2
os:
- linux
python:
- "pypy"
- "2.7"
- "3.6"
- "nightly" # currently points to 3.7-dev
cache:
directories:
- $HOME/.cache/pip
matrix:
fast_finish: true
dist: trusty
sudo: required
language: python
before_install:
# Show build setup
- uname -a
- cat /etc/os-release
- pwd
- free -tm
- python --version
- git --version
- pip install -r requirements.txt
install:
# git describe requires complete history
# - travis_retry git fetch --unshallow
- python setup.py install
- python setup.py test
script:
- python helpTest.py | grep wsgiref
after_success:
- echo "OK, all done."
notifications:
email:
recipients:
- ralic.lo.eng@ieee.org
on_success: always # default: change
on_failure: never # default: always