Skip to content

Commit

Permalink
Temporary disable OOM functional tests (#1183)
Browse files Browse the repository at this point in the history
Signed-off-by: Petr Shumilov <p.shumilov@vkteam.ru>
  • Loading branch information
PetrShumilov authored Dec 12, 2024
1 parent 2398687 commit 87cd922
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/python/tests/http_server/test_oom_handler.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import requests.exceptions
from python.lib.testcase import KphpServerAutoTestCase
import unittest


class TestOomHandler(KphpServerAutoTestCase):
Expand Down Expand Up @@ -46,10 +47,12 @@ def test_script_memory_realloc(self):
self._generic_test("test_case=script_memory_realloc")
self.kphp_server.assert_log(["realloc_allocations_cnt=1,realloc_mem_allocated=[1-9]\\d*"], timeout=5)

@unittest.skip("Temporary disabled until KPHP-1990 will be resolved")
def test_with_job_request(self):
self._generic_test("test_case=with_job_request")
self.kphp_server.assert_log(["job_request_succeeded=1"], timeout=5)

@unittest.skip("Temporary disabled until KPHP-1990 will be resolved")
def test_with_instance_cache(self):
self._generic_test("test_case=with_instance_cache")
self.kphp_server.assert_log(["instance_cache_store_succeeded=1"], timeout=5)
Expand Down

0 comments on commit 87cd922

Please sign in to comment.