You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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
|
|
)
|