Skip to content

Commit 5651c3d

Browse files
committed
Add coverage support
1 parent 4b72d58 commit 5651c3d

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
dep
22
*.pyc
33
config.yaml
4+
.coverage

install

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ easy_install txredisapi
77
easy_install pyyaml
88
easy_install docopt
99
easy_install nose
10+
easy_install coverage
1011
if [ ! -f config.yaml ]
1112
then
1213
cp config.yaml.example config.yaml

test

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ if [ ! -d dep ]
66
fi
77
source dep/bin/activate
88
cd src
9-
exec nosetests $@
9+
exec nosetests -w . $@
1010

0 commit comments

Comments
 (0)