- Implemented Settings page for changing user passwords with validation and feedback. - Created Setup page for initial admin account setup with form handling and navigation. - Added API service layer for handling requests related to proxy hosts, remote servers, and import functionality. - Introduced mock data for testing purposes and set up testing framework with vitest. - Configured Tailwind CSS for styling and Vite for development and build processes. - Added scripts for Dockerfile validation, Python syntax checking, and Sourcery integration. - Implemented release and coverage scripts for better CI/CD practices.
34 lines
653 B
YAML
34 lines
653 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
|
|
ignore:
|
|
- "**/tests/*"
|
|
- "**/test/*"
|
|
- "**/__tests__/*"
|
|
- "**/test_*.go"
|
|
- "**/*_test.go"
|
|
- "**/*.test.ts"
|
|
- "**/*.test.tsx"
|
|
- "docs/*"
|
|
- ".github/*"
|
|
- "scripts/*"
|
|
- "tools/*"
|
|
- "frontend/node_modules/*"
|
|
- "frontend/dist/*"
|
|
- "frontend/coverage/*"
|
|
- "backend/cmd/seed/*"
|
|
- "backend/data/*"
|
|
- "backend/coverage/*"
|
|
- "*.md"
|