- Added Codecov configuration to enforce 75% coverage. - Created .dockerignore to exclude unnecessary files from Docker context. - Implemented GitHub Actions CI workflow for linting, testing, and coverage reporting. - Added a workflow to propagate changes between main and development branches. - Configured pre-commit hooks for code quality checks. - Developed a multi-stage Dockerfile for a Python web backend. - Added MIT License to the project. - Created README.md with project overview and setup instructions. - Implemented a script to create GitHub issues from project planning. - Defined development and runtime requirements in requirements.txt and requirements.dev.txt.
19 lines
359 B
YAML
19 lines
359 B
YAML
# Codecov configuration - require 75% overall coverage by default
|
|
# Adjust target as needed
|
|
|
|
coverage:
|
|
status:
|
|
project:
|
|
default:
|
|
target: 75%
|
|
threshold: 0%
|
|
|
|
# Fail CI if Codecov upload/report indicates a problem
|
|
require_ci_to_pass: yes
|
|
|
|
# Exclude folders from Codecov (adjust as needed)
|
|
ignore:
|
|
- tests/*
|
|
- docs/*
|
|
- .github/*
|