Add extra rye configs. update locks to be OS-aware
Signed-off-by: Yurii Serhiichuk <savik.ne@gmail.com>
This commit is contained in:
parent
e6abc12470
commit
b03578a307
|
@ -53,6 +53,8 @@ dev-dependencies = [
|
||||||
"pre-commit>=3.8.0",
|
"pre-commit>=3.8.0",
|
||||||
"pytest-cov>=5.0.0",
|
"pytest-cov>=5.0.0",
|
||||||
]
|
]
|
||||||
|
universal = true
|
||||||
|
generate-hashes = true
|
||||||
|
|
||||||
[tool.hatch.version]
|
[tool.hatch.version]
|
||||||
path = "src/cloudevents/__init__.py"
|
path = "src/cloudevents/__init__.py"
|
||||||
|
@ -104,6 +106,10 @@ exclude = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[tool.ruff.lint]
|
[tool.ruff.lint]
|
||||||
|
|
||||||
ignore = ["E731"]
|
ignore = ["E731"]
|
||||||
extend-ignore = ["E203"]
|
extend-ignore = ["E203"]
|
||||||
|
|
||||||
|
[tool.pytest.ini_options]
|
||||||
|
testpaths = [
|
||||||
|
"tests",
|
||||||
|
]
|
||||||
|
|
|
@ -6,12 +6,12 @@
|
||||||
# features: []
|
# features: []
|
||||||
# all-features: false
|
# all-features: false
|
||||||
# with-sources: false
|
# with-sources: false
|
||||||
# generate-hashes: false
|
# generate-hashes: true
|
||||||
# universal: false
|
# universal: true
|
||||||
|
|
||||||
-e file:.
|
-e file:.
|
||||||
cfgv==3.4.0
|
cfgv==3.4.0
|
||||||
colorama==0.4.6
|
colorama==0.4.6 ; sys_platform == 'win32'
|
||||||
coverage==7.6.1
|
coverage==7.6.1
|
||||||
distlib==0.3.8
|
distlib==0.3.8
|
||||||
filelock==3.16.1
|
filelock==3.16.1
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
# features: []
|
# features: []
|
||||||
# all-features: false
|
# all-features: false
|
||||||
# with-sources: false
|
# with-sources: false
|
||||||
# generate-hashes: false
|
# generate-hashes: true
|
||||||
# universal: false
|
# universal: true
|
||||||
|
|
||||||
-e file:.
|
-e file:.
|
||||||
|
|
Loading…
Reference in New Issue