From 0889328faf776e2e52084936fc0f3a8492000837 Mon Sep 17 00:00:00 2001 From: DanielaBreitman Date: Mon, 17 Jul 2023 13:37:10 +0200 Subject: [PATCH] Check emu download --- tests/test_emulator.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/test_emulator.py b/tests/test_emulator.py index 736a9c3d..9fdf290f 100644 --- a/tests/test_emulator.py +++ b/tests/test_emulator.py @@ -2,6 +2,10 @@ def test_emulator_install(): from py21cmemu import Emulator from py21cmemu.get_emulator import get_emu_data get_emu_data() + + import tensorflow as tf + from py21cmemu.config import CONFIG + m = tf.keras.load_model(CONFIG.data_path / '21cmEMU') #emu = Emulator() def test_emulator_runs():