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: 1 addition & 1 deletion codeflash-benchmark/codeflash_benchmark/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.20.5.post169.dev0+2dba3e38"
__version__ = "0.20.5.post177.dev0+da536db8"
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.20.5.post169.dev0+2dba3e38"
__version__ = "0.20.5.post177.dev0+da536db8"
7 changes: 3 additions & 4 deletions tests/test_languages/test_java/test_comparator.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
"""Tests for Java test result comparison."""

import shutil
import sqlite3
from pathlib import Path

Expand All @@ -15,7 +14,7 @@
from codeflash.models.models import TestDiffScope

# Skip tests that require the codeflash-runtime JAR (built by Maven from codeflash-java-runtime/)
requires_java = pytest.mark.skipif(
requires_java_runtime = pytest.mark.skipif(
_find_comparator_jar() is None,
reason="codeflash-runtime JAR not found - skipping Comparator integration tests",
)
Expand Down Expand Up @@ -451,7 +450,7 @@ def test_deeply_nested_objects(self):
assert equivalent is True


@requires_java
@requires_java_runtime
class TestTestResultsTableSchema:
"""Tests for Java Comparator reading from test_results table schema.

Expand Down Expand Up @@ -926,7 +925,7 @@ def test_compare_different_error_types(self):
assert diffs[0].scope == TestDiffScope.DID_PASS


@requires_java
@requires_java_runtime
class TestComparatorJavaEdgeCases(TestTestResultsTableSchema):
"""Tests for Java Comparator edge cases that require Java runtime.

Expand Down
1 change: 0 additions & 1 deletion tests/test_languages/test_java/test_run_and_parse.py
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,6 @@ def test_behavior_multiple_test_methods(self, java_project):
assert "testAddPositive" in test_names
assert "testAddZero" in test_names

@requires_java_runtime
def test_behavior_return_value_correctness(self, tmp_path):
"""Verify the Comparator JAR correctly identifies equivalent vs. differing results.

Expand Down