From f757f8b484a4483e4bea434856627f266989c378 Mon Sep 17 00:00:00 2001 From: Jason Bissict Date: Thu, 25 Jan 2024 14:39:35 +0200 Subject: [PATCH] Add test basic --- .github/workflows/test.yml | 4 ++-- tests/integration/test_custom_binary.py | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8b8b6f0e7..8e04e6f2e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -162,5 +162,5 @@ jobs: copy .\frontend\frontend.env.dist .\frontend\frontend.env copy .\switchboard\switchboard.env.dist .\switchboard\switchboard.env cd tests - poetry run pytest .\integration\test_custom_binary.py --runv3 - # poetry run coverage run --source=.\integration -m pytest .\integration\test_custom_binary.py --runv3 + poetry run coverage run --source=.\integration -m pytest .\integration\test_custom_binary.py::test_basic --runv3 + #poetry run pytest .\integration\test_custom_binary.py --runv3 diff --git a/tests/integration/test_custom_binary.py b/tests/integration/test_custom_binary.py index 655cf3e4a..24a05dfe5 100644 --- a/tests/integration/test_custom_binary.py +++ b/tests/integration/test_custom_binary.py @@ -28,6 +28,10 @@ ) +def test_basic(): + assert True + + @pytest.mark.skip(reason="testing") # @pytest.mark.skipif(os.name == "nt", reason="Skip if nt os (Windows OS)") @pytest.mark.parametrize("version", [v2, v3])