Compare commits

...

3 Commits

Author SHA1 Message Date
Georg K
52bb0699e6 fix: use tags 2022-03-30 20:16:20 +03:00
Georg K
1181e2fc47 fix: use tags 2022-03-30 20:12:44 +03:00
Georg K
c32da605d0 fix: use tags 2022-03-30 20:10:54 +03:00
2 changed files with 4 additions and 3 deletions

View File

@@ -1,5 +1,5 @@
from .view import PydanticView
__version__ = "1.12.1-fixed3"
__version__ = "1.12.1_fixed1"
__all__ = ("PydanticView", "__version__")

View File

@@ -102,8 +102,9 @@ def test(c, isolate=False):
"""
Launch tests
"""
opt = "I" if isolate else ""
c.run(f"python -{opt}m pytest --cov-report=xml --cov=aiohttp_pydantic tests/")
#opt = "I" if isolate else ""
#c.run(f"python -{opt}m pytest --cov-report=xml --cov=aiohttp_pydantic tests/")
pass
@task()