Skip to content

Commit

Permalink
[qa] Fix coverage and add github actions to dependabot
Browse files Browse the repository at this point in the history
  • Loading branch information
nemesifier committed Jul 31, 2024
1 parent ab3b107 commit 23fb977
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 12 deletions.
10 changes: 0 additions & 10 deletions .coveragerc

This file was deleted.

6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,9 @@ updates:
interval: "monthly"
commit-message:
prefix: "[deps] "
- package-ecosystem: "github-actions" # Check for GitHub Actions updates
directory: "/" # The root directory where the Ansible role is located
schedule:
interval: "monthly" # Check for updates weekly
commit-message:
prefix: "[ci] "
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage*
.cache
nosetests.xml
coverage.xml
Expand Down Expand Up @@ -68,4 +68,3 @@ Pipfile

# IDE specific files
.idea

9 changes: 9 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
[tool.coverage.run]
source = ["django_x509"]
parallel = true
concurrency = ["multiprocessing"]
omit = [
"django_x509/__init__.py",
"*/tests/*"
]

[tool.docstrfmt]
extend_exclude = ["**/*.py"]

Expand Down

0 comments on commit 23fb977

Please sign in to comment.