forked from amitu/importd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
49 lines (27 loc) · 782 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
sudo: false
language: python
python:
- 2.7
- 3.5
- pypy
- pypy3
- nightly
os:
- linux
# - osx
before_install: pip install --upgrade tox pip virtualenv wheel setuptools --quiet
install: pip install fhurl gunicorn smarturls dj-database-url --quiet
before_script: pyclean --verbose .
script: tox
# after_script: true # runs after tests
# after_success: true # runs when all tests passed
# after_failure: true # runs when failed
notifications:
email:
recipients: [email protected]
template:
- "%{repository}@%{branch}: %{message}(%{build_url})"
- "Build: %{build_number},SHA: %{commit},Committer: %{author},Diff: %{compare_url}"
on_success: always
on_failure: always
cache: apt