From acdd018e408dbde1ebffd692d38554f780952529 Mon Sep 17 00:00:00 2001 From: juliannguyen4 <109386615+juliannguyen4@users.noreply.github.com> Date: Fri, 14 Jul 2023 16:20:05 -0700 Subject: [PATCH] [CLIENT-2221] Skip MemorySize() test due to QE tests #1 and #2 failing --- test/new_tests/test_expressions_base.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/new_tests/test_expressions_base.py b/test/new_tests/test_expressions_base.py index 63666cf6a..6426a9527 100644 --- a/test/new_tests/test_expressions_base.py +++ b/test/new_tests/test_expressions_base.py @@ -190,6 +190,10 @@ def test_void_time_pos(self): record = self.as_connection.get(("test", "demo", _NUM_RECORDS), policy={"expressions": expr.compile()}) assert record[2]["extra"] == "record" + @pytest.mark.skip("MemorySize() value depends on whether server is configured to store data in memory or not.\ + QE tests #1 and #2 are failing because some of their server scenarios have this configured\ + where some nodes have it configured and some don't. It's also hard to figure out\ + which node the record belongs to.") def test_memory_size_pos(self): # The Docker Aerospike image uses storage-memory device by default expr = Eq(MemorySize(), 0)