From 860a83404e7c721c1e913afebb0c02aec4f9e251 Mon Sep 17 00:00:00 2001 From: Alexander Held <45009355+alexander-held@users.noreply.github.com> Date: Sun, 17 Mar 2024 15:16:39 +0100 Subject: [PATCH] test: temporarily skip TensorFlow in tests (#468) * temporarily skip TensorFlow backend in tests --- tests/test_backends.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_backends.py b/tests/test_backends.py index 3c8670d0..0b93b43e 100644 --- a/tests/test_backends.py +++ b/tests/test_backends.py @@ -16,7 +16,7 @@ def reset_backend(): @pytest.mark.slow @pytest.mark.no_cover -@pytest.mark.parametrize("backend", ["jax", "pytorch", "tensorflow"]) +@pytest.mark.parametrize("backend", ["jax", "pytorch"]) # skip TF temporarily def test_backend_integration(backend, reset_backend): """Integration test for the inference pipeline that can be run with all ``pyhf`` backends to ensure they work. ``typeguard`` will catch type issues at runtime.