From 82935c53e18c5c7afe95fa4de21e6303efc24dd0 Mon Sep 17 00:00:00 2001 From: Kyle Herndon Date: Thu, 27 Feb 2025 01:03:12 +0000 Subject: [PATCH] Revert "Flux test" This reverts commit 58925bfcfaf42c6908fe78a6d1c6cb11c381c2bb. --- shortfin/tests/apps/flux/conftest.py | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 shortfin/tests/apps/flux/conftest.py diff --git a/shortfin/tests/apps/flux/conftest.py b/shortfin/tests/apps/flux/conftest.py deleted file mode 100644 index 1a08d9b4b..000000000 --- a/shortfin/tests/apps/flux/conftest.py +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright 2024 Advanced Micro Devices, Inc. -# -# Licensed under the Apache License v2.0 with LLVM Exceptions. -# See https://llvm.org/LICENSE.txt for license information. -# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception - -import pytest - -from shortfin.support.deps import ShortfinDepNotFoundError - - -@pytest.fixture(autouse=True) -def require_deps(): - try: - import shortfin_apps.sd - except ShortfinDepNotFoundError as e: - pytest.skip(f"Dep not available: {e}")