Skip to content

Commit

Permalink
results_parser: remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
gruberma committed Jan 26, 2025
1 parent 903da89 commit dc9910e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions flapy/results_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -1577,7 +1577,6 @@ def _save_flaky_failures_iteration(self, row: pd.Series, outcomes: List[str], sa
file_.tarinfo.name = Path(iteration.p.name) / os.path.basename(
file_.tarinfo.name
)
print(f"extracting {file_=} to {proj_savedir}")
iteration.get_archive().extract(file_.tarinfo, proj_savedir)

iteration.close_archive()
Expand Down Expand Up @@ -1619,7 +1618,7 @@ def save_flaky_failures(
passed_failed = PassedFailed(self.get_passed_failed())
to = passed_failed.to_tests_overview()

logging.info("Start export")
logging.info("Starting export")
# Filter for specified projects
if proj_csv is not None:
proj_df = pd.read_csv(proj_csv)[proj_cols]
Expand Down Expand Up @@ -1656,9 +1655,7 @@ def save_flaky_failures(
for f_type in flaky_types:
# Filter for flaky tests
flaky_tests = to[to["flaky?"] == f_type][proj_cols + test_cols]
print(f"{flaky_tests=}")
pf_flaky = passed_failed._df.merge(flaky_tests)
print(f"{pf_flaky=}")

pool = multiprocessing.Pool()
pool.map(
Expand Down

0 comments on commit dc9910e

Please sign in to comment.