From 9dda128cafd43cece53d64ae0afa644f041b4a9d Mon Sep 17 00:00:00 2001 From: Normann Date: Wed, 1 Jan 2025 12:28:19 +0100 Subject: [PATCH] remove temp. test skip (#313) --- tests/test_server.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/test_server.py b/tests/test_server.py index 026b113..5ec4758 100644 --- a/tests/test_server.py +++ b/tests/test_server.py @@ -1,7 +1,6 @@ from http import HTTPStatus from pathlib import Path -import pytest import requests from akkudoktoreos.config import CONFIG_FILE_NAME, load_config @@ -18,7 +17,6 @@ def test_fixture_setup(server, tmp_path: Path) -> None: def test_server(server, tmp_path: Path): """Test the server.""" - pytest.skip() # temp skip test until 01.01.24 result = requests.get(f"{server}/gesamtlast_simple?year_energy=2000&") assert result.status_code == HTTPStatus.OK