Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .codacy.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# https://docs.codacy.com/repositories-configure/codacy-configuration-file/

exclude_paths:
- ".github"
- ".vscode"
Expand Down
15 changes: 9 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,19 @@ updates:
- package-ecosystem: "pip"
directory: "/"
schedule:
interval: "weekly"
interval: "daily"
groups:
fastapi:
patterns:
- "fastapi"
- "starlette"
pydantic:
- "fastapi*"
flake8:
patterns:
- "pydantic*"
- "flake8*"
pytest:
patterns:
- "pytest*"
- "gevent"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
interval: "daily"
2 changes: 1 addition & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
branches: [ master ]

env:
PYTHON_VERSION: 3.9
PYTHON_VERSION: 3.12

jobs:
lint:
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
## Status

[![Python CI](https://github.com/nanotaboada/python-samples-fastapi-restful/actions/workflows/python-app.yml/badge.svg)](https://github.com/nanotaboada/python-samples-fastapi-restful/actions/workflows/python-app.yml)
[![Bugs](https://sonarcloud.io/api/project_badges/measure?project=nanotaboada_python-samples-fastapi-restful&metric=bugs)](https://sonarcloud.io/summary/new_code?id=nanotaboada_python-samples-fastapi-restful)
[![CodeFactor](https://www.codefactor.io/repository/github/nanotaboada/python-samples-fastapi-restful/badge)](https://www.codefactor.io/repository/github/nanotaboada/python-samples-fastapi-restful)
[![codebeat badge](https://codebeat.co/badges/4c4f7c08-3b35-4b57-a875-bf2043efe515)](https://codebeat.co/projects/github-com-nanotaboada-python-samples-fastapi-restful-master)
[![Maintainability](https://qlty.sh/badges/af009694-c5cc-4568-897d-d20fa7ee017d/maintainability.svg)](https://qlty.sh/gh/nanotaboada/projects/python-samples-fastapi-restful)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=nanotaboada_python-samples-fastapi-restful&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=nanotaboada_python-samples-fastapi-restful)
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/8f9bab37f6f444c895a8b25d5df772fc)](https://app.codacy.com/gh/nanotaboada/python-samples-fastapi-restful/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
[![codecov](https://codecov.io/gh/nanotaboada/python-samples-fastapi-restful/branch/master/graph/badge.svg?token=A1WNZPRQEJ)](https://codecov.io/gh/nanotaboada/python-samples-fastapi-restful)
[![Known Vulnerabilities](https://snyk.io/test/github/nanotaboada/python-samples-fastapi-restful/badge.svg)](https://snyk.io/test/github/nanotaboada/python-samples-fastapi-restful)
[![CodeFactor](https://www.codefactor.io/repository/github/nanotaboada/python-samples-fastapi-restful/badge)](https://www.codefactor.io/repository/github/nanotaboada/python-samples-fastapi-restful)
[![codebeat badge](https://codebeat.co/badges/4c4f7c08-3b35-4b57-a875-bf2043efe515)](https://codebeat.co/projects/github-com-nanotaboada-python-samples-fastapi-restful-master)



## Manifesto

Expand Down
11 changes: 1 addition & 10 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
# Validate your repository YAML
# https://docs.codecov.com/docs/codecov-yaml#validate-your-repository-yaml
# curl -X POST --data-binary @codecov.yml https://codecov.io/validate
# https://docs.codecov.com/docs/codecov-yaml

# Ignoring Paths
# https://docs.codecov.com/docs/ignoring-paths
# The pattern folder/* will not match recursively in the folder.
# Please use this folder/**/*, which will exclude all files within the given folder.
ignore:
- "data"
- "models"
Expand All @@ -14,11 +8,8 @@ ignore:
- "postman_collections"
- "main.py"


coverage:
status:
# Splitting up projects
# https://docs.codecov.com/docs/commit-status#splitting-up-projects-example
project:
routes:
paths:
Expand Down
Loading
Loading