-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from philip-ndikum/refactor-temporalscope
Refactor temporalscope (bypassing PR rule to during beta stage)
- Loading branch information
Showing
26 changed files
with
4,731 additions
and
1,871 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 17 additions & 12 deletions
29
.github/SCIENTIFIC_LITERATURE.md → SCIENTIFIC_LITERATURE.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,21 @@ | ||
# codecov.yml | ||
|
||
coverage: | ||
status: | ||
project: | ||
default: | ||
target: auto | ||
threshold: 5% | ||
target: auto # Automatically adjusts based on the current project coverage | ||
threshold: 80% # Allow up to an 80% drop in overall coverage during beta phase | ||
# Note: This permits a large drop in overall project coverage during the fast-paced development phase. | ||
|
||
patch: | ||
default: | ||
informational: true | ||
informational: true # Informational only; won't fail the pipeline | ||
target: 5% # Set a minimal target of 5% coverage for new code patches | ||
threshold: 90% # Allow up to a 90% drop on new code coverage (extremely lenient) | ||
# Note: This ensures that even with low coverage, the pipeline won’t block PRs, but you still get coverage insights. | ||
|
||
parsers: | ||
python: | ||
include: | ||
- "src/temporalscope/**" # Focus coverage checks only on main source files, excluding tests and docs for now |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.