@@ -19,6 +19,7 @@ def build_package(context):
19
19
raise Exception ('Error building packages: %s' % result )
20
20
else :
21
21
log .info ('Built %s' % packages )
22
+ return True
22
23
23
24
24
25
def install_package (context ):
@@ -41,17 +42,18 @@ def install_package(context):
41
42
42
43
def upload_package (context ):
43
44
"""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
49
49
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 )
53
55
else :
54
- log .info ('Successfully uploaded %s:%s' , context . module_name , context . new_version )
56
+ log .info ('Dry run, skipping package upload' )
55
57
56
58
57
59
def install_from_pypi (context ):
0 commit comments