__init__.py 329 B

12345678910111213141516
  1. from numpy.testing import IS_WASM, IS_EDITABLE
  2. import pytest
  3. if IS_WASM:
  4. pytest.skip(
  5. "WASM/Pyodide does not use or support Fortran",
  6. allow_module_level=True
  7. )
  8. if IS_EDITABLE:
  9. pytest.skip(
  10. "Editable install doesn't support tests with a compile step",
  11. allow_module_level=True
  12. )