aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2020-03-06 17:57:55 +0000
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2020-03-06 17:57:55 +0000
commitc4d13809c11d6921f32c0f8bee2588233ec1623a (patch)
treefaeeaddbe6d858c3ae44cdba3a53631a41f56d4b
parentDocumentation improvement (diff)
downloadpygensvm-c4d13809c11d6921f32c0f8bee2588233ec1623a.tar.gz
pygensvm-c4d13809c11d6921f32c0f8bee2588233ec1623a.zip
Update release script to not run tests automatically
-rw-r--r--make_release.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/make_release.py b/make_release.py
index bfb9314..616b896 100644
--- a/make_release.py
+++ b/make_release.py
@@ -104,7 +104,8 @@ class UpdateChangelog(Step):
class RunTests(Step):
def action(self, context):
- self.do_cmd("make test")
+ self.instruct("Run the unit tests")
+ self.print_run("make test")
class BumpVersionPackage(Step):