Skip to content

Commit

Permalink
Merge pull request red-hat-storage#11389 from vavuthu/skip_rpm_collec…
Browse files Browse the repository at this point in the history
…tion_for_dev_mode

Skip RPM collection for development mode
  • Loading branch information
petr-balogh authored Feb 17, 2025
2 parents 6c3be3e + 54fb3c5 commit f63e51c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -4605,6 +4605,10 @@ def collect_logs_fixture(request):
This fixture collects ocs logs after tier execution and this will allow
to see the cluster's status after the execution on all execution status options.
"""
dev_mode = ocsci_config.RUN["cli_params"].get("dev_mode")
if dev_mode:
log.info("Skipping RPM collection for development mode.")
return

def finalizer():
"""
Expand Down

0 comments on commit f63e51c

Please sign in to comment.