Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
benedikt-schesch committed Oct 28, 2023
1 parent ad0f095 commit d735b20
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/python/merge_analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,10 @@ def merge_analyzer( # pylint: disable=too-many-locals
cache_data["test merge"] = (
cache_data["parents pass"]
and cache_data["diff_contains_java_file"]
and cache_data["left test coverage"] > 0.8
and cache_data["right test coverage"] > 0.8
and cache_data["left parent test coverage"] is not None
and cache_data["right parent test coverage"] is not None
and cache_data["left parent test coverage"] > 0.8
and cache_data["right parent test coverage"] > 0.8
)

set_in_cache(cache_key, cache_data, repo_slug, merge_cache_directory)
Expand Down

0 comments on commit d735b20

Please sign in to comment.