Skip to content
Merged
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
6 changes: 5 additions & 1 deletion tests/unit/test_fake_gp_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,18 @@
the exact production default (get_backend("gpflow")), so these are additive, zero-risk
changes to the constructors.
"""
import pytest
import numpy as np

from emcal.emulators import GPEmulator, build_gp_emulator
from emcal.enums import Kernel
from emcal.gp_backend.gpflow_backend import GpflowBackend

from _fakes import FakeGPBackend

gpflow = pytest.importorskip("gpflow", reason="gpflow not installed")

from emcal.gp_backend.gpflow_backend import GpflowBackend


def test_fake_backend_implements_full_abc_interface():
backend = FakeGPBackend()
Expand Down
Loading