(cls)
| 374 | |
| 375 | @classmethod |
| 376 | def setup_class(cls): |
| 377 | if sys.platform == "win32": |
| 378 | pytest.skip("Fails with MinGW64 Gfortran (Issue #9673)") |
| 379 | F2PyTest._has_c_compiler = has_c_compiler() |
| 380 | F2PyTest._has_f77_compiler = has_f77_compiler() |
| 381 | F2PyTest._has_f90_compiler = has_f90_compiler() |
| 382 | F2PyTest._has_fortran_compiler = has_fortran_compiler() |
| 383 | |
| 384 | def setup_method(self): |
| 385 | if self.module is not None: |
nothing calls this directly
no test coverage detected