Skip to content

Commit

Permalink
limit to 3 collection tested each time (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
sliu008 committed Jul 11, 2023
1 parent 6dbba0b commit a0c2b1f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions notebook_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

from utils import FileHandler
from utils.enums import Venue

import itertools

def parse_args():
"""
Expand Down 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)
for collection in collections:

# limit number of collections tested to 4
for collection in itertools.islice(collections, 3):
if "POCLOUD" not in collection and venue == "uat":
continue

Expand Down

0 comments on commit a0c2b1f

Please sign in to comment.