Show More
@@ -54,7 +54,7 b' clean:' | |||
|
54 | 54 | # test: run test-clean and tests |
|
55 | 55 | test: |
|
56 | 56 | make test-clean |
|
57 | unset RC_SQLALCHEMY_DB1_URL && unset RC_DB_URL && make test-only | |
|
57 | make test-only | |
|
58 | 58 | |
|
59 | 59 | |
|
60 | 60 | .PHONY: test-clean |
@@ -35,8 +35,7 b' dependencies = {file = ["requirements.tx' | |||
|
35 | 35 | optional-dependencies.tests = {file = ["requirements_test.txt"]} |
|
36 | 36 | |
|
37 | 37 | [tool.ruff] |
|
38 | ||
|
39 | select = [ | |
|
38 | lint.select = [ | |
|
40 | 39 | # Pyflakes |
|
41 | 40 | "F", |
|
42 | 41 | # Pycodestyle |
@@ -45,16 +44,13 b' select = [' | |||
|
45 | 44 | # isort |
|
46 | 45 | "I001" |
|
47 | 46 | ] |
|
48 | ||
|
49 | ignore = [ | |
|
47 | lint.ignore = [ | |
|
50 | 48 | "E501", # line too long, handled by black |
|
51 | 49 | ] |
|
52 | ||
|
53 | 50 | # Same as Black. |
|
54 | 51 | line-length = 120 |
|
55 | 52 | |
|
56 | [tool.ruff.isort] | |
|
57 | ||
|
53 | [tool.ruff.lint.isort] | |
|
58 | 54 | known-first-party = ["vcsserver"] |
|
59 | 55 | |
|
60 | 56 | [tool.ruff.format] |
@@ -71,7 +67,6 b' skip-magic-trailing-comma = false' | |||
|
71 | 67 | # Like Black, automatically detect the appropriate line ending. |
|
72 | 68 | line-ending = "auto" |
|
73 | 69 | |
|
74 | ||
|
75 | 70 | [tool.bumpversion] |
|
76 | 71 | current_version = "5.4.0" |
|
77 | 72 | parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)" |
General Comments 0
You need to be logged in to leave comments.
Login now