-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* poetry to uv * add PR to action updater
- Loading branch information
Showing
8 changed files
with
1,318 additions
and
1,520 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,20 @@ | ||
[flake8] | ||
extend-ignore = E203, E266, E501 | ||
exclude = | ||
.git, | ||
.venv, | ||
__pycache__, | ||
build, | ||
dist | ||
# line length is intentionally set to 80 here because black uses Bugbear | ||
# See https://github.com/psf/black/blob/master/docs/the_black_code_style.md#line-length for more details | ||
max-line-length = 80 | ||
max-complexity = 18 | ||
select = B,C,E,F,W,T4,B9 | ||
# ignore unused import in __init__, used to pull into namespace | ||
per-file-ignores = | ||
rdap/__init__.py:F401 | ||
|
||
[gh-actions] | ||
python = | ||
3.8: py38 | ||
3.9: py39 | ||
3.10: py310 | ||
3.11: py311 | ||
|
||
[isort] | ||
profile = black | ||
multi_line_output = 3 | ||
3.12: py312 | ||
|
||
[pytest] | ||
norecursedirs = data gen .tox | ||
|
||
[tox] | ||
isolated_build = true | ||
envlist = py{38,39,310,311} | ||
envlist = py{38,39,310,311,312} | ||
|
||
[testenv] | ||
allowlist_externals = poetry | ||
runner = uv-venv-lock-runner | ||
extras = dev | ||
deps = | ||
poetry | ||
commands = | ||
poetry install -v | ||
poetry run pytest -vv --cov="{toxinidir}/rdap" --cov-report=term-missing --cov-report=xml tests/ | ||
pytest -vv --cov="{toxinidir}/rdap" --cov-report=term-missing --cov-report=xml tests/ |
Oops, something went wrong.