From 8042e59550b1c01b9d86c7991074dff1bb4a1537 Mon Sep 17 00:00:00 2001 From: Kostas Filippopolitis Date: Wed, 24 Jul 2024 11:43:02 +0300 Subject: [PATCH] The federation_info.py detects user logging and transient experiments. --- .github/workflows/portalbackend-integration-tests.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/portalbackend-integration-tests.yml b/.github/workflows/portalbackend-integration-tests.yml index 8148fed3..ad568338 100644 --- a/.github/workflows/portalbackend-integration-tests.yml +++ b/.github/workflows/portalbackend-integration-tests.yml @@ -27,4 +27,10 @@ jobs: - name: Run the dev tests working-directory: ./dev/ - run: bash test.sh + run: pytest -k "not test_federation_info.py" + + - name: Run the federation info tests + working-directory: ./dev/ + run: pytest tests/test_federation_info.py + +