We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00bdda6 commit 369d752Copy full SHA for 369d752
integration/tests/posit/connect/test_system.py
@@ -74,4 +74,6 @@ def test_runtime_caches(self):
74
# Check if the cache is deployed
75
caches = self.client.system.caches.runtime.find()
76
77
- assert len(caches) > 0
+ # Caches only added in Connect versions >= 2024.05.0
78
+ if CONNECT_VERSION >= version.parse("2024.05.0"):
79
+ assert len(caches) > 0
0 commit comments