Skip to content

Commit 2764931

Browse files
committed
Make doctest output easier to parse
Verbose mode w/ doctest drowns out actual failures.
1 parent a370d45 commit 2764931

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

runtests.sh

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/bin/sh
22
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
3+
echo "Starting doctests."
4+
python postgres/__init__.py
5+
python postgres/cursors.py
6+
python postgres/orm.py
7+
echo "Done with doctests."

0 commit comments

Comments
 (0)