We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 202cd37 commit cdae31aCopy full SHA for cdae31a
.travis.yml
@@ -10,10 +10,7 @@ before_script:
10
- psql -U postgres -c 'CREATE DATABASE "test";'
11
- psql -U postgres -c 'CREATE USER jrandom SUPERUSER;'
12
script:
13
- - DATABASE_URL=postgres://jrandom@localhost/test py.test tests.py -v
14
- - python postgres/__init__.py -v
15
- - python postgres/cursors.py -v
16
- - python postgres/orm.py -v
+ - ./runtests.sh
17
notifications:
18
email: false
19
irc:
runtests.sh
@@ -0,0 +1,5 @@
1
+#!/bin/sh
2
+DATABASE_URL=postgres://jrandom@localhost/test py.test tests.py -v
3
+python postgres/__init__.py -v
4
+python postgres/cursors.py -v
5
+python postgres/orm.py -v
0 commit comments