From 7ef29e5004c208e80373e4b8015d46f0c8596cfb Mon Sep 17 00:00:00 2001 From: Sylvain Leclerc Date: Wed, 11 Sep 2024 11:37:36 +0200 Subject: [PATCH] fix: remove test lines Signed-off-by: Sylvain Leclerc --- .github/workflows/deploy.yml | 1 - tests/test_front.py | 2 -- 2 files changed, 3 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 158f2e14c5..e34aef58ae 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -4,7 +4,6 @@ on: branches: - "master" - "hotfix/**" - - "feature/1724-upgrade-python-dependencies" jobs: binary: diff --git a/tests/test_front.py b/tests/test_front.py index 499835d3b9..5046a868cf 100644 --- a/tests/test_front.py +++ b/tests/test_front.py @@ -70,7 +70,6 @@ def redirect_app(app_with_home: FastAPI) -> FastAPI: def test_redirect_middleware_does_not_modify_home(redirect_app: FastAPI) -> None: - # A simple app which has only a home endpoint and one backend endpoint client = TestClient(redirect_app) response = client.get("/") assert response.status_code == 200 @@ -78,7 +77,6 @@ def test_redirect_middleware_does_not_modify_home(redirect_app: FastAPI) -> None def test_redirect_middleware_redirects_unknown_routes_to_home(redirect_app: FastAPI) -> None: - # A simple app which has only a home endpoint and one backend endpoint client = TestClient(redirect_app) response = client.get("/a-front-route") assert response.status_code == 200