try to integrate with github workflows

This commit is contained in:
2021-03-28 21:47:20 +03:00
parent d744fe1647
commit f383b04754
2 changed files with 47 additions and 3 deletions

View File

@ -71,8 +71,25 @@ setup(
],
extras_require={
"html-templates": ["Jinja2"],
"test": ["pytest", "pytest-cov", "pytest-helpers-namespace", "pytest-mock", "pytest-pspec", "pytest-resource-path"],
"web": ["Jinja2", "aiohttp", "aiohttp_jinja2", "requests"],
"check": [
"autopep8",
"mypy",
"pylint",
],
"test": [
"pytest",
"pytest-aiohttp",
"pytest-cov",
"pytest-helpers-namespace",
"pytest-mock",
"pytest-pspec",
"pytest-resource-path",
],
"web": [
"Jinja2",
"aiohttp",
"aiohttp_jinja2",
"requests",
],
},
)