summaryrefslogtreecommitdiff
path: root/service/go
diff options
context:
space:
mode:
authorBruno Wagner <bwagner@riseup.net>2015-01-21 20:04:13 -0200
committerPixpoa pairing <pixpoapairing@pixelated-project.org>2015-01-21 20:04:13 -0200
commit137f1f103cf1bfb76c7e62f2ee9df21d2d1f6223 (patch)
tree25635f212acb3f522598610122a5d9e54bf23479 /service/go
parent444fced517da618230a1c1a86912d711d172d34a (diff)
Added -w because nosetests was thinking we wanted to run all the tests
Diffstat (limited to 'service/go')
-rwxr-xr-xservice/go4
1 files changed, 2 insertions, 2 deletions
diff --git a/service/go b/service/go
index bb3eca90..f8cee6f5 100755
--- a/service/go
+++ b/service/go
@@ -12,11 +12,11 @@ function setupjs {
}
function runIntegrationTests {
- nosetests "$*" test/integration
+ nosetests "$*" -w test/integration
}
function runUnitTests {
- nosetests "$*" test/unit
+ nosetests "$*" -w test/unit
}
function runPep8 {