Skip to content

Commit c3fe9ec

Browse files
committed
style: clean up imports in parse_test_output
1 parent 6de75e7 commit c3fe9ec

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

codeflash/verification/parse_test_output.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from __future__ import annotations
22

3-
import contextlib
43
import os
54
import re
65
import sqlite3
@@ -22,6 +21,9 @@
2221
)
2322
from codeflash.discovery.discover_unit_tests import discover_parameters_unittest
2423
from codeflash.languages import is_javascript
24+
25+
# Import Jest-specific parsing from the JavaScript language module
26+
from codeflash.languages.javascript.parse import parse_jest_test_xml as _parse_jest_test_xml
2527
from codeflash.models.models import (
2628
ConcurrencyMetrics,
2729
FunctionTestInvocation,
@@ -32,10 +34,6 @@
3234
)
3335
from codeflash.verification.coverage_utils import CoverageUtils, JestCoverageUtils
3436

35-
# Import Jest-specific parsing from the JavaScript language module
36-
from codeflash.languages.javascript.parse import jest_end_pattern, jest_start_pattern
37-
from codeflash.languages.javascript.parse import parse_jest_test_xml as _parse_jest_test_xml
38-
3937
if TYPE_CHECKING:
4038
import subprocess
4139

0 commit comments

Comments
 (0)