Skip to content

Commit 4d64525

Browse files
committed
Get going with Travis; #6
1 parent 69749f7 commit 4d64525

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.travis.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
language: python
2+
before_script:
3+
- psql -U postgres -c 'CREATE DATABASE "test";'
4+
- pip install pytest
5+
script: DATABASE_URL=postgres://postgres@localhost/test py.test tests.py -v
6+
notifications:
7+
email: false
8+
irc:
9+
channels:
10+
- "irc.freenode.org#gittip"
11+
on_success: change
12+
on_failure: always
13+
template:
14+
- "%{repository} (%{branch}:%{commit} by %{author}): %{message} (%{build_url})"
15+
skip_join: true
16+

0 commit comments

Comments
 (0)