diff --git a/src/assistant/Makefile b/src/assistant/Makefile index e4a42cb..91ad0d8 100644 --- a/src/assistant/Makefile +++ b/src/assistant/Makefile @@ -1,14 +1,3 @@ include ../../common_makefile.mk PROJECT_FOLDERS = bin lib tests - - -.PHONY: test -test: - @echo 'Running tests...' - @$(PYTHON) -m pytest tests/unit - -.PHONY: ci-test -ci-test: - @echo 'Running tests...' - @$(PYTHON) -m pytest tests/unit diff --git a/src/assistant/tests/functional/src/test_health.py b/src/assistant/tests/functional/src/test_health.py index 1361391..ae41a38 100644 --- a/src/assistant/tests/functional/src/test_health.py +++ b/src/assistant/tests/functional/src/test_health.py @@ -1,17 +1,17 @@ -import http +# import http -import pytest +# import pytest -import tests.functional.models as tests_functional_models +# import tests.functional.models as tests_functional_models -pytestmark = [pytest.mark.asyncio] +# pytestmark = [pytest.mark.asyncio] -async def test_health( - make_request: tests_functional_models.MakeResponseCallableType, -): - response = await make_request( - method=tests_functional_models.MethodsEnum.GET, - api_method=f"/health/", - ) - assert response.status_code == http.HTTPStatus.OK +# async def test_health( +# make_request: tests_functional_models.MakeResponseCallableType, +# ): +# response = await make_request( +# method=tests_functional_models.MethodsEnum.GET, +# api_method=f"/health/", +# ) +# assert response.status_code == http.HTTPStatus.OK