Skip to content

Commit 7e658ba

Browse files
committed
change threshold to 80
1 parent ac10b8c commit 7e658ba

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/tester.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,7 @@ jobs:
114114
uses: insightsengineering/coverage-action@v2
115115
with:
116116
path: ./cobertura.xml
117-
# ADJUSTED: Lowered to 55.00 to match current EZyRB state (57%)
118-
threshold: 55.00
117+
threshold: 80.00
119118
fail: true
120119
publish: ${{ github.event.pull_request.head.repo.full_name == github.repository }}
121120
coverage-summary-title: "Code Coverage Summary"

ezyrb/database.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,9 @@ def split(self, chunks, seed=None):
170170
>>> train, test = db.split([80, 20]) # n snapshots
171171
172172
"""
173-
logger.debug("Splitting database with chunks=%s, seed=%s", chunks, seed)
173+
logger.debug(
174+
"Splitting database with chunks=%s, seed=%s", chunks, seed
175+
)
174176

175177
if seed is not None:
176178
np.random.seed(seed)

0 commit comments

Comments
 (0)