Skip to content

Commit d7274ec

Browse files
committed
removed benchmark-skip
1 parent ab9079b commit d7274ec

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

codeflash/discovery/discover_unit_tests.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,6 @@ def discover_tests_pytest(
7272
capture_output=True,
7373
text=True,
7474
)
75-
logger.info(result.stdout)
76-
logger.info(result.stderr)
7775
try:
7876
with tmp_pickle_path.open(mode="rb") as f:
7977
exitcode, tests, pytest_rootdir = pickle.load(f)

codeflash/discovery/pytest_new_process_discovery.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def parse_pytest_collection_results(pytest_tests: list[Any]) -> list[dict[str, s
4040

4141
try:
4242
exitcode = pytest.main(
43-
[tests_root, "-p no:logging", "--collect-only", "-m", "not skip", "--benchmark-skip"], plugins=[PytestCollectionPlugin()]
43+
[tests_root, "-p no:logging", "--collect-only", "-m", "not skip"], plugins=[PytestCollectionPlugin()]
4444
)
4545
except Exception as e: # noqa: BLE001
4646
print(f"Failed to collect tests: {e!s}") # noqa: T201

0 commit comments

Comments
 (0)