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 9ad7cc3 commit e0d5951Copy full SHA for e0d5951
.github/workflows/ci.yaml
@@ -41,6 +41,7 @@ jobs:
41
matrix:
42
CONNECT_VERSION:
43
- preview
44
+ - 2024.09.0
45
- 2024.08.0
46
- 2024.06.0
47
- 2024.05.0
integration/tests/posit/connect/test_jobs.py
@@ -48,5 +48,5 @@ def test_find_by(self):
48
bundle = content.bundles.create(path)
49
bundle.deploy()
50
51
- jobs = content.jobs.find_by(status=1)
52
- assert len(jobs) == 1
+ jobs = content.jobs.find_by()
+ assert len(jobs) != 0
integration/tests/posit/connect/test_packages.py
@@ -9,7 +9,7 @@
9
10
11
@pytest.mark.skipif(
12
- CONNECT_VERSION <= version.parse("2024.09.0"),
+ CONNECT_VERSION < version.parse("2024.10.0-dev"),
13
reason="Packages API unavailable",
14
)
15
class TestPackages:
0 commit comments