Repository URL to install this package:
|
Version:
2.6.5 ▾
|
prefect
/
setup.cfg
|
|---|
[tool:pytest]
addopts = -rfEsx --cov=src/ --cov=tests/ --no-cov-on-fail --cov-report=term
norecursedirs = *.egg-info .git .mypy_cache node_modules .pytest_cache .vscode
markers =
service(arg): a service integration test. For example 'docker'
enable_orion_handler: by default, sending logs to the API is disabled. Tests marked with this use the handler.
env =
PREFECT_TEST_MODE = 1
asyncio_mode = auto
timeout = 60
filterwarnings =
error
ignore::DeprecationWarning:tornado.platform.asyncio.*
ignore::DeprecationWarning:tornado.ioloop
ignore:Implicitly cleaning up <TemporaryDirectory 'C:ResourceWarning
ignore::ResourceWarning:distributed.diskutils
ignore:unclosed:ResourceWarning:distributed.node
ignore::ImportWarning:google.api_core.exceptions
ignore:coroutine 'Connection.cursor' was never awaited:RuntimeWarning
ignore:coroutine 'AsyncAdapt_asyncpg_cursor._prepare_and_execute' was never awaited:RuntimeWarning
ignore:The `RayTaskRunner` has moved:DeprecationWarning
ignore:The `DaskTaskRunner` has moved:DeprecationWarning
ignore:`DeploymentSpec` has been replaced by `Deployment`:DeprecationWarning
ignore:the imp module is deprecated:DeprecationWarning
ignore:distutils Version classes are deprecated:DeprecationWarning
ignore:The distutils package is deprecated:DeprecationWarning
ignore:Use setlocale:DeprecationWarning
[isort]
skip = __init__.py
profile = black
skip_gitignore = True
multi_line_output = 3
[mypy]
disallow_untyped_defs = False
check_untyped_defs = False
files = ./src/prefect/**/*.py
[mypy-prefect.flows]
ignore_errors = True
[mypy-prefect.tasks]
ignore_errors = True
[flake8]
max-line-length = 88
extend-ignore =
E203,
[pycodestyle]
max-line-length = 88
extend-ignore =
E203,
[versioneer]
VCS = git
style = pep440
versionfile_source = src/prefect/_version.py
versionfile_build = prefect/_version.py
tag_prefix =
parentdir_prefix =
[coverage:run]
branch = True
[coverage:report]
exclude_lines =
@(abc\.)?abstractmethod
omit =
src/prefect/orion/database/migrations/versions/*
ignore_errors = True
[egg_info]
tag_build =
tag_date = 0