Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] master from Corvia:master #309

Merged
merged 5 commits into from
Feb 3, 2024
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: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,6 @@ jobs:
DJANGO_DATABASE_PORT: ${{ job.services.postgres.ports[5432] }}

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
file: ./coverage.xml
38 changes: 19 additions & 19 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 5 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ django-stubs = ">=1.12,<5.0"
nitpick = ">=0.32,<0.34"
safety = ">=2.2,<4.0"
black = ">=22.8,<24.0"
ruff = "^0.1.14"
ruff = ">=0.1.14,<0.3.0"

# Testing Utilities
pytest = "^7.2.2"
Expand Down Expand Up @@ -106,6 +106,10 @@ max-line-length = 88


[tool.ruff]
line-length = 88
target-version = "py37"

[tool.ruff.lint]
select = ["ALL"]
ignore = [
"ANN", # Type hints related, let mypy handle these.
Expand All @@ -120,8 +124,6 @@ ignore = [
"SIM108", # "Use ternary operator ...". Ternary is harmful for readability in some cases.
"TRY003", # "Avoid specifying long messages outside the exception class"
]
line-length = 88
target-version = "py37"

[tool.ruff.lint.per-file-ignores]
"**/migrations/*" = ["RUF012"]
Expand Down