Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions codeflash/tracer.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
import json
import pickle
import subprocess
import time

import sys
from argparse import ArgumentParser
from pathlib import Path
Expand Down
3 changes: 2 additions & 1 deletion codeflash/tracing/pytest_parallelization.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
from pathlib import Path
from random import shuffle


def pytest_split(
arguments: list[str], num_splits: int | None = None
) -> tuple[list[list[str]] | None, list[str] | None]:
Expand Down Expand Up @@ -53,7 +54,7 @@ def pytest_split(
if num_splits is None:
num_splits = os.cpu_count() or 4

#randomize to increase chances of all splits being balanced
# randomize to increase chances of all splits being balanced
test_files = list(test_files)
shuffle(test_files)

Expand Down
2 changes: 1 addition & 1 deletion codeflash/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# These version placeholders will be replaced by uv-dynamic-versioning during build.
__version__ = "0.16.6"
__version__ = "0.16.7"
Loading