Skip to content

Commit

Permalink
Feature/limit automation collection (#65)
Browse files Browse the repository at this point in the history
* limit to 3 collection tested each time

* update comments

* raise excecption when removing from cmr fails

* limit to 1 collection test
  • Loading branch information
sliu008 authored Jul 12, 2023
1 parent 081be98 commit d205856
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions notebook_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ def run():
if path.exists(inputFile):
venue = Venue.from_str(environment)
collections = FileHandler.get_file_content_list_per_line(inputFile)
# limit number of collections tested to 3
for collection in itertools.islice(collections, 3):
# limit number of collections tested to 1
for collection in itertools.islice(collections, 1):
if "POCLOUD" not in collection and venue == "uat":
continue

Expand Down

0 comments on commit d205856

Please sign in to comment.