Skip to content

Commit 1888fa2

Browse files
fix integration tests; add 2025.07.0 to test matrix
1 parent d1dac3e commit 1888fa2

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

integration/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ PYTEST_ARGS ?= "-s"
2626

2727
# Versions
2828
CONNECT_VERSIONS := \
29+
2025.07.0 \
2930
2025.06.0 \
3031
2025.05.0 \
3132
2025.04.0 \

integration/tests/posit/connect/oauth/test_associations.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,10 @@ def test_find_update_by_content(self):
123123
no_associations = self.content.oauth.associations.find()
124124
assert len(no_associations) == 0
125125

126+
@pytest.mark.skipif(
127+
CONNECT_VERSION <= version.parse("2025.07.0"),
128+
reason="Multi associations not supported.",
129+
)
126130
def test_find_update_by_content_multiple(self):
127131
self.content.oauth.associations.update(
128132
[

0 commit comments

Comments
 (0)