17 lines
329 B
Python
17 lines
329 B
Python
|
import pytest
|
||
|
|
||
|
from numpy.testing import IS_EDITABLE, IS_WASM
|
||
|
|
||
|
if IS_WASM:
|
||
|
pytest.skip(
|
||
|
"WASM/Pyodide does not use or support Fortran",
|
||
|
allow_module_level=True
|
||
|
)
|
||
|
|
||
|
|
||
|
if IS_EDITABLE:
|
||
|
pytest.skip(
|
||
|
"Editable install doesn't support tests with a compile step",
|
||
|
allow_module_level=True
|
||
|
)
|