Skip to content

Commit

Permalink
add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
braingram committed Oct 14, 2024
1 parent 9407d40 commit 572a2ab
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions romancal/regtest/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ def postmortem(request, fixturename):

def pytest_collection_modifyitems(config, items):
# add the index of each item in the list of items
# this is used below for artifactory_result_path
# to produce a unique result subdirectory for
# each test (even if that test shares a name with
# another test which is the case for parametrized tests).
for i, item in enumerate(items):
item.index = i

Expand Down

0 comments on commit 572a2ab

Please sign in to comment.