pytest_cases/fixture_core2.py
2
E117:
over-indented
545
from
.pep525
import
_decorate_fixture_plus_asyncgen_pep525
548
from
.pep492
import
_decorate_fixture_plus_coroutine_pep492
2
E261:
at least two spaces before inline comment
22
try
:
# native coroutines, python 3.5+
28
try
:
# native async generators, python 3.6+
1
E225:
missing whitespace around operator
544
if
isasyncgenfunction
(
fixture_func
)
and
sys
.
version_info
>=
(
3
,
6
):
4
T001:
print found.
128
print
(
"Creating unparametrized fixture
%r
returning
%r
"
%
(
argname
,
argvalue_to_return
))
138
print
(
"Creating parametrized fixture
%r
returning
%r
"
%
(
argname
,
argvalues
))
228
print
(
"Creating parametrized 'root' fixture
%r
returning
%r
"
%
(
root_fixture_name
,
argvalues
))
247
print
(
"Creating nonparametrized 'view' fixture
%r
returning
%r
[
%s
]"