@@ -48,7 +48,7 @@ def clear_samples_dist() -> None:
48
48
or platform .python_implementation ().lower () == "pypy" ,
49
49
reason = "Disable test on Windows for Python <=3.6 and for PyPy" ,
50
50
)
51
- def test_wheel_c_extension () -> None :
51
+ def test_wheel_c_extension () -> None : # NOSONAR
52
52
module_path = fixtures_dir / "extended"
53
53
builder = Builder (Factory ().create_poetry (module_path ))
54
54
builder .build (fmt = "all" )
@@ -110,7 +110,7 @@ def test_wheel_c_extension() -> None:
110
110
or platform .python_implementation ().lower () == "pypy" ,
111
111
reason = "Disable test on Windows for Python <=3.6 and for PyPy" ,
112
112
)
113
- def test_wheel_c_extension_with_no_setup () -> None :
113
+ def test_wheel_c_extension_with_no_setup () -> None : # NOSONAR
114
114
module_path = fixtures_dir / "extended_with_no_setup"
115
115
builder = Builder (Factory ().create_poetry (module_path ))
116
116
builder .build (fmt = "all" )
@@ -172,7 +172,7 @@ def test_wheel_c_extension_with_no_setup() -> None:
172
172
or platform .python_implementation ().lower () == "pypy" ,
173
173
reason = "Disable test on Windows for Python <=3.6 and for PyPy" ,
174
174
)
175
- def test_wheel_c_extension_src_layout () -> None :
175
+ def test_wheel_c_extension_src_layout () -> None : # NOSONAR
176
176
module_path = fixtures_dir / "src_extended"
177
177
builder = Builder (Factory ().create_poetry (module_path ))
178
178
builder .build (fmt = "all" )
0 commit comments