So tests can be closer to the real thing, by mocking the HTTP server instead of having a completely different abstraction on the client side (RdflibSparqlBackend)
63 lines
1.1 KiB
TOML
63 lines
1.1 KiB
TOML
[build-system]
|
|
requires = ["setuptools"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "glowtables"
|
|
version = "0.0.1"
|
|
requires-python = ">=3.9"
|
|
dependencies = [
|
|
"flask ~= 2.0.0",
|
|
"rdflib ~= 6.0.0",
|
|
"requests ~= 3.0.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
testing = [
|
|
"pytest",
|
|
"pytest-mock",
|
|
"requests-mock",
|
|
"types-requests",
|
|
"types-setuptools",
|
|
]
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
|
|
[tool.mypy]
|
|
python_version = "3.9"
|
|
|
|
[[tool.mypy.overrides]]
|
|
module = [
|
|
"requests_mock",
|
|
]
|
|
ignore_missing_imports = true
|
|
|
|
[tool.pylint.format]
|
|
max-line-length = "88"
|
|
py-version = "3.9"
|
|
disable = [
|
|
# too annoying:
|
|
"fixme",
|
|
"invalid-name",
|
|
"no-else-return",
|
|
"no-else-continue",
|
|
"too-few-public-methods",
|
|
"too-many-instance-attributes",
|
|
# false positives:
|
|
"unreachable",
|
|
"assignment-from-no-return",
|
|
# mypy does it better:
|
|
"no-member",
|
|
"unsupported-membership-test",
|
|
"import-error",
|
|
# flake8 does it already:
|
|
"line-too-long",
|
|
]
|
|
ignore-paths = [
|
|
"glowtables/tests/.*_test.py"
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
python_files = "*_test.py"
|