aboutsummaryrefslogtreecommitdiff
path: root/make_release.py
diff options
context:
space:
mode:
Diffstat (limited to 'make_release.py')
-rw-r--r--make_release.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/make_release.py b/make_release.py
index 932209a..a19b5fd 100644
--- a/make_release.py
+++ b/make_release.py
@@ -98,7 +98,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):
@@ -158,7 +159,7 @@ class TestPackage(Step):
self.instruct(
f"Ensure that the following command gives version {context['version']}"
)
- self.print_run(f"{context['pkgname']} -h")
+ self.print_run(f"p2r -h")
class DeactivateVenv(Step):