This repository has been archived by the owner on Aug 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from MarketSquare/support_wider_range_of_json_…
…property_names Support wider range of json property names
- Loading branch information
Showing
47 changed files
with
2,404 additions
and
1,760 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -109,6 +109,9 @@ venv.bak/ | |
# mypy | ||
.mypy_cache/ | ||
|
||
# ruff | ||
.ruff_cache | ||
|
||
.idea/ | ||
|
||
.dmypy.json | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name="robotframework-openapi-libcore" | ||
version = "1.9.1" | ||
version = "1.10.0" | ||
description = "A Robot Framework library to facilitate library development for OpenAPI / Swagger APIs." | ||
license = "Apache-2.0" | ||
authors = ["Robin Mackaij <[email protected]>"] | ||
|
@@ -31,18 +31,27 @@ rstr = "^3" | |
openapi-core = "^0.17.0" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
black = "*" | ||
isort = "*" | ||
pylint = "*" | ||
mypy = "*" | ||
types-requests = "^2.25.6" | ||
invoke = "*" | ||
robotframework-stacktrace = "*" | ||
uvicorn = "*" | ||
fastapi = ">=0.88" | ||
coverage = {version = "^5.5", extras = ["toml"]} | ||
robotframework-tidy = "^3.3.3" | ||
robotframework-robocop = "^2.7.0" | ||
fastapi = ">=0.95.0" | ||
uvicorn = ">=0.22.0" | ||
invoke = ">=2.0.0" | ||
coverage = {version=">=7.2.5", extras = ["toml"]} | ||
robotframework-stacktrace = ">=0.4.1" | ||
|
||
[tool.poetry.group.formatting.dependencies] | ||
black = ">=22.10.0" | ||
isort = ">=5.10.1" | ||
robotframework-tidy = ">=3.4.0" | ||
|
||
[tool.poetry.group.type-checking.dependencies] | ||
mypy = ">=1.2.0" | ||
pyright = ">=1.1.300" | ||
types-requests = ">=2.28.11" | ||
types-invoke = ">=2.0.0.6" | ||
|
||
[tool.poetry.group.linting.dependencies] | ||
pylint = ">=2.17.2" | ||
ruff = ">=0.0.267" | ||
robotframework-robocop = ">=2.7.0" | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
|
@@ -60,18 +69,24 @@ exclude_lines = [ | |
] | ||
|
||
[tool.mypy] | ||
show_error_codes = true | ||
plugins = ["pydantic.mypy"] | ||
warn_redundant_casts = true | ||
warn_unused_ignores = true | ||
disallow_any_generics = true | ||
check_untyped_defs = true | ||
plugins = "pydantic.mypy" | ||
disallow_untyped_defs = true | ||
strict = true | ||
show_error_codes = true | ||
|
||
[[tool.mypy.overrides]] | ||
module = [ | ||
"DataDriver.*", | ||
"prance.*", | ||
"robot.*", | ||
"openapi_core.*", | ||
"invoke", | ||
"OpenApiLibCore.*", | ||
"uvicorn", | ||
"rstr" | ||
"invoke", | ||
] | ||
ignore_missing_imports = true | ||
|
||
|
@@ -80,22 +95,36 @@ line-length = 88 | |
target-version = ["py38"] | ||
|
||
[tool.isort] | ||
src_paths = [ | ||
"src" | ||
] | ||
multi_line_output = 3 | ||
include_trailing_comma = true | ||
force_grid_wrap = 0 | ||
combine_as_imports = true | ||
use_parentheses = true | ||
ensure_newline_before_comments = true | ||
line_length = 88 | ||
profile = "black" | ||
py_version=38 | ||
|
||
[tool.ruff] | ||
line-length = 120 | ||
select = ["E", "F", "PL"] | ||
src = ["src/OpenApiDriver"] | ||
|
||
[tool.pylint.'MESSAGES CONTROL'] | ||
disable = ["W1203"] | ||
disable = ["logging-fstring-interpolation", "missing-class-docstring"] | ||
|
||
[tool.pylint.'FORMAT CHECKER'] | ||
max-line-length=120 | ||
|
||
[tool.pylint.'SIMILARITIES CHECKER'] | ||
ignore-imports="yes" | ||
|
||
[tool.robotidy] | ||
line_length = 120 | ||
spacecount = 4 | ||
|
||
[tool.robocop] | ||
filetypes = [".robot", ".resource"] | ||
configure = [ | ||
"line-too-long:line_length:120", | ||
"too-many-calls-in-test-case:max_calls:15" | ||
] | ||
exclude = [ | ||
"missing-doc-suite", | ||
"missing-doc-test-case", | ||
"missing-doc-keyword", | ||
"too-few-calls-in-test-case" | ||
] |
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
Oops, something went wrong.