Always use local files when testing

This commit is contained in:
Sean Whalen
2024-05-22 08:30:12 -04:00
parent 201280d700
commit 6e96b88a27

View File

@@ -35,7 +35,7 @@ class Test(unittest.TestCase):
continue
print("Testing {0}: " .format(sample_path), end="")
parsed_report = parsedmarc.parse_report_file(
sample_path)["report"]
sample_path, always_use_local_files=True)["report"]
parsedmarc.parsed_aggregate_reports_to_csv(parsed_report)
print("Passed!")