1. Add skyline-log unit test case and tools 2. Update `setup` method type annotation Change-Id: Icc0ce98063e32501b75525f36262a1ed4c99e61f
37 lines
773 B
TOML
37 lines
773 B
TOML
[tool.poetry]
|
|
name = "skyline-log"
|
|
version = "0.1.0"
|
|
description = ""
|
|
license = "Apache-2.0"
|
|
authors = ["OpenStack <openstack-discuss@lists.openstack.org>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.8"
|
|
loguru = "*"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
isort = "*"
|
|
black = "^21.5b1"
|
|
add-trailing-comma = "*"
|
|
flake8 = "*"
|
|
mypy = "*"
|
|
pytest = "*"
|
|
pytest-xdist = "*"
|
|
mimesis = "*"
|
|
pytest-cov = "*"
|
|
pytest-html = "*"
|
|
|
|
[tool.pytest.ini_options]
|
|
minversion = "6.0"
|
|
addopts = "-v -s -p no:cacheprovider -n auto --cov=skyline_log --cov-append --cov-report=term-missing --cov-report=html"
|
|
testpaths = [
|
|
"tests",
|
|
]
|
|
markers = [
|
|
"ddt(*args: TestData): Mark the test as a data-driven test."
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|