Skip to content

Commit c7123a3

Browse files
committed
Rename test_download_order func in its script so pytest skips it
1 parent fd87fcd commit c7123a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/test_order_download.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def poll_for_success(order_url, auth, num_loops=50):
110110
raise Exception('order did not succeed')
111111

112112

113-
def test_download_order(order_id, num_runs):
113+
def download_order(order_id, num_runs):
114114
# # these are the files inside the zip
115115
# expected_files = [
116116
# '20200505_193841_ssc4d1_0018_analytic_reproject.tif',
@@ -189,5 +189,5 @@ def get_parser():
189189
order_url = ORDERS_URL + '/' + order_id
190190
poll_for_success(order_url, auth)
191191

192-
test_download_order(order_id, args.runs)
192+
download_order(order_id, args.runs)
193193
logger.info('order id: {}'.format(order_id))

0 commit comments

Comments
 (0)