pytest_cases/fixture_parametrize_plus.py
2
E261:
at least two spaces before inline comment
14
try
:
# native coroutines, python 3.5+
20
try
:
# native async generators, python 3.6+
1
E128:
continuation line under-indented for visual indent
1087
replace_paramfixture_with_values
)
1
E225:
missing whitespace around operator
1080
if
isasyncgenfunction
(
test_func
)
and
sys
.
version_info
>=
(
3
,
6
):
1
E303:
too many blank lines (2)
1080
if
isasyncgenfunction
(
test_func
)
and
sys
.
version_info
>=
(
3
,
6
):
11
T001:
print found.
348
print
(
" - Creating new fixture
%r
to handle parameter
%s
"
%
(
p_fix_name
,
i
))
461
print
(
" - Creating new fixture
%r
to handle parameters
%s
to
%s
"
%
(
p_fix_name
,
from_i
,
to_i
-
1
))
796
print
(
"No fixture reference found. Calling @pytest.mark.parametrize..."
)
797
print
(
" - argnames:
%s
"
%
initial_argnames
)
798
print
(
" - argvalues:
%s
"
%
marked_argvalues
)
799
print
(
" - ids:
%s
"
%
ids
)
850
print
(
"Fixture references found. Creating references and fixtures..."
)
904
print
(
" - Creating reference to existing fixture
%r
"
%
(
f_fix_name
,))
930
print
(
" - Creating new fixture
%r
to handle parameter
%s
that is a cross-product"
%
(
p_fix_name
,
i
))
1031
print
(
"Creating final union fixture
%r
with alternatives
%r
"
1061
print
(
"Creating final test function wrapper with signature
%s%s
"
%
(
test_func_name
,
new_sig
))
2
S101:
Use of assert detected. The enclosed code will be removed when compiling to optimised byte code.
1021
assert
len
(
alt
)
==
1
,
"Error with alternative please report"
1027
assert
isinstance
(
alt
,
FixtureParamAlternative
),
"Created fixture names not unique, please report"