From 9cc254d1b7c18a36a595c41e7774ff3ff02a3d4a Mon Sep 17 00:00:00 2001 From: Fischer Moseley <42497969+fischermoseley@users.noreply.github.com> Date: Wed, 27 Nov 2024 12:56:55 -0800 Subject: [PATCH] tests: remove redundant test_toolchains test --- test/test_toolchains.py | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 test/test_toolchains.py diff --git a/test/test_toolchains.py b/test/test_toolchains.py deleted file mode 100644 index 698add7..0000000 --- a/test/test_toolchains.py +++ /dev/null @@ -1,16 +0,0 @@ -import pytest -from amaranth_boards.icestick import ICEStickPlatform -from amaranth_boards.nexys4ddr import Nexys4DDRPlatform -from amaranth_boards.test.blinky import * - -from manta.utils import * - - -@pytest.mark.skipif(not xilinx_tools_installed(), reason="no toolchain installed") -def test_nexys4_ddr_tools(): - Nexys4DDRPlatform().build(Blinky(), do_program=False) - - -@pytest.mark.skipif(not ice40_tools_installed(), reason="no toolchain installed") -def test_ice40_tools(): - ICEStickPlatform().build(Blinky(), do_program=False)