We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7aed84 commit be9714fCopy full SHA for be9714f
1 file changed
tests/integration.py
@@ -162,15 +162,16 @@ def clean_up(client, asset_to_delete):
162
163
return True
164
165
-if __name__ == "__main__":
+def run_test():
166
print("Beginning Integration test...")
167
168
client = init_client()
169
-
170
test_download(client)
171
172
upload_folder_id = test_upload(client)
173
174
check_upload_completion(client, download_asset_id, upload_folder_id)
+ clean_up(client, upload_folder_id)
+
+ print("Test complete, exiting...")
175
176
- clean_up(client, upload_folder_id)
+if __name__ == "__main__":
177
+ run_test()
0 commit comments