From e1d80a5fdb6dc286066a9e32b63bf376cff69950 Mon Sep 17 00:00:00 2001 From: steltze Date: Wed, 31 Jul 2024 14:41:16 +0200 Subject: [PATCH] Skip tests --- test/pytest/test_optimization/test_fifo_depth.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/pytest/test_optimization/test_fifo_depth.py b/test/pytest/test_optimization/test_fifo_depth.py index d28b4672f1..21ce268f76 100644 --- a/test/pytest/test_optimization/test_fifo_depth.py +++ b/test/pytest/test_optimization/test_fifo_depth.py @@ -100,6 +100,7 @@ def expect_exception(error, message, backend, profiling_fifo_depth, io_type): # test faulty inputs of profiling_fifo_depth to verify that an exception is raised +@pytest.mark.skip(reason='Skipping synthesis tests for now') @pytest.mark.parametrize('backend', backend_options) @pytest.mark.parametrize('profiling_fifo_depth', [-2, "a"]) def test_value_error(backend, profiling_fifo_depth): @@ -108,12 +109,14 @@ def test_value_error(backend, profiling_fifo_depth): # test with io_type='io_parallel' to verify that an exception is raised +@pytest.mark.skip(reason='Skipping synthesis tests for now') @pytest.mark.parametrize('backend', backend_options) def test_runtime_error(backend): message = "To use this optimization you have to set `IOType` field to `io_stream` in the HLS config." expect_exception(RuntimeError, message, backend, profiling_fifo_depth=200_000, io_type='io_parallel') +@pytest.mark.skip(reason='Skipping synthesis tests for now') @pytest.mark.parametrize('backend', backend_options) def test_successful_execution(backend): fifo_depth_optimization_script(backend, profiling_fifo_depth=200_000, io_type='io_stream')