Skip to content

Commit ab06fa4

Browse files
committed
Correct build_package return bools and dry run logging
1 parent 8e22273 commit ab06fa4

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

changes/packaging.py

+11-9
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ def build_package(context):
1919
raise Exception('Error building packages: %s' % result)
2020
else:
2121
log.info('Built %s' % packages)
22+
return True
2223

2324

2425
def install_package(context):
@@ -41,17 +42,18 @@ def install_package(context):
4142

4243
def upload_package(context):
4344
"""Uploads your project packages to pypi with twine."""
44-
result = build_package(context)
45-
46-
upload_args = 'twine upload dist/*'
47-
if context.pypi:
48-
upload_args += ' -r %s' % context.pypi
45+
if not context.dry_run and build_package(context):
46+
upload_args = 'twine upload dist/*'
47+
if context.pypi:
48+
upload_args += ' -r %s' % context.pypi
4949

50-
upload_result = shell.dry_run(upload_args, context.dry_run)
51-
if not context.dry_run and not upload_result:
52-
raise Exception('Error uploading: %s' % upload_result)
50+
upload_result = shell.dry_run(upload_args, context.dry_run)
51+
if not context.dry_run and not upload_result:
52+
raise Exception('Error uploading: %s' % upload_result)
53+
else:
54+
log.info('Successfully uploaded %s:%s', context.module_name, context.new_version)
5355
else:
54-
log.info('Successfully uploaded %s:%s', context.module_name, context.new_version)
56+
log.info('Dry run, skipping package upload')
5557

5658

5759
def install_from_pypi(context):

0 commit comments

Comments
 (0)