Skip to content

Commit

Permalink
feat(#77): make jacoco limits a bit lower
Browse files Browse the repository at this point in the history
  • Loading branch information
volodya-lombrozo committed Jan 15, 2024
1 parent c1a3cc7 commit 7732f98
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -280,17 +280,17 @@ SOFTWARE.
<limit>
<counter>INSTRUCTION</counter>
<value>COVEREDRATIO</value>
<minimum>0.80</minimum>
<minimum>0.71</minimum>
</limit>
<limit>
<counter>LINE</counter>
<value>COVEREDRATIO</value>
<minimum>0.77</minimum>
<minimum>0.74</minimum>
</limit>
<limit>
<counter>BRANCH</counter>
<value>COVEREDRATIO</value>
<minimum>0.50</minimum>
<minimum>0.43</minimum>
</limit>
<limit>
<counter>COMPLEXITY</counter>
Expand Down

3 comments on commit 7732f98

@0pdd
Copy link

@0pdd 0pdd commented on 7732f98 Jan 15, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 65-d2f07aec disappeared from src/main/java/org/eolang/opeo/compilation/OpeoNodes.java), that's why I closed #77. Please, remember that the puzzle was not necessarily removed in this particular commit. Maybe it happened earlier, but we discovered this fact only now.

@0pdd
Copy link

@0pdd 0pdd commented on 7732f98 Jan 15, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 77-7779c651 discovered in src/main/java/org/eolang/opeo/compilation/OpeoNodes.java) and submitted as #80. Please, remember that the puzzle was not necessarily added in this particular commit. Maybe it was added earlier, but we discovered it only now.

@0pdd
Copy link

@0pdd 0pdd commented on 7732f98 Jan 15, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Puzzle 77-151d34f6 discovered in src/main/java/org/eolang/opeo/compilation/OpeoNodes.java) and submitted as #81. Please, remember that the puzzle was not necessarily added in this particular commit. Maybe it was added earlier, but we discovered it only now.

Please sign in to comment.