Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions test_autoarray/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import importlib.util
import os
from os import path
import pytest
Expand All @@ -7,13 +6,6 @@
from autoarray import fixtures
from autoconf import conf

# Skip JAX-only tests when jax isn't installed. find_spec checks availability
# WITHOUT importing the module, so this conftest stays numpy-only per the
# "library unit tests stay numpy-only" rule.
collect_ignore_glob = []
if importlib.util.find_spec("jax") is None:
collect_ignore_glob = ["test_jax_*.py", "**/test_jax_*.py"]


class PlotPatch:
def __init__(self):
Expand Down
Loading
Loading