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 d1dac3e commit 1888fa2Copy full SHA for 1888fa2
integration/Makefile
@@ -26,6 +26,7 @@ PYTEST_ARGS ?= "-s"
26
27
# Versions
28
CONNECT_VERSIONS := \
29
+ 2025.07.0 \
30
2025.06.0 \
31
2025.05.0 \
32
2025.04.0 \
integration/tests/posit/connect/oauth/test_associations.py
@@ -123,6 +123,10 @@ def test_find_update_by_content(self):
123
no_associations = self.content.oauth.associations.find()
124
assert len(no_associations) == 0
125
126
+ @pytest.mark.skipif(
127
+ CONNECT_VERSION <= version.parse("2025.07.0"),
128
+ reason="Multi associations not supported.",
129
+ )
130
def test_find_update_by_content_multiple(self):
131
self.content.oauth.associations.update(
132
[
0 commit comments