From a321a3facfc3e3898efcc9f7123fae6bd15a82cb Mon Sep 17 00:00:00 2001 From: Jochem Smit Date: Fri, 14 Jun 2024 11:03:20 +0200 Subject: [PATCH] comment out unused benchmarks --- tests/test_fitting.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_fitting.py b/tests/test_fitting.py index 2de3ce6f..4d542111 100644 --- a/tests/test_fitting.py +++ b/tests/test_fitting.py @@ -165,10 +165,10 @@ def test_duptake_fit(hdxm_apo: HDXMeasurement): def test_global_fit(hdxm_apo: HDXMeasurement): initial_rates = csv_to_dataframe(output_dir / "ecSecB_guess.csv") - t0 = time.time() # Very crude benchmarks + # t0 = time.time() # Very crude benchmarks gibbs_guess = hdxm_apo.guess_deltaG(initial_rates["rate"]) fr_global = fit_gibbs_global(hdxm_apo, gibbs_guess, epochs=1000, r1=2) - t1 = time.time() + # t1 = time.time() # assert t1 - t0 < 5 # Fails sometimes out_deltaG = fr_global.output