aboutsummaryrefslogtreecommitdiff
path: root/make_release.py
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2019-10-25 20:30:35 +0100
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2019-10-25 20:30:35 +0100
commit0110d86d2d9dc00569acdab19ae0b2fb9d8e4064 (patch)
treeaf5daa0276cd02567b5af0baa85f8e3539275e66 /make_release.py
parentBump version and update changelog (diff)
downloadpaper2remarkable-0110d86d2d9dc00569acdab19ae0b2fb9d8e4064.tar.gz
paper2remarkable-0110d86d2d9dc00569acdab19ae0b2fb9d8e4064.zip
Minor updates to release scriptv0.4.1
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):