diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0b25bc7c..237858d8 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -41,6 +41,7 @@ jobs: matrix: CONNECT_VERSION: - preview + - 2024.09.0 - 2024.08.0 - 2024.06.0 - 2024.05.0 diff --git a/integration/tests/posit/connect/test_jobs.py b/integration/tests/posit/connect/test_jobs.py index 6b978943..496ccc66 100644 --- a/integration/tests/posit/connect/test_jobs.py +++ b/integration/tests/posit/connect/test_jobs.py @@ -48,5 +48,5 @@ def test_find_by(self): bundle = content.bundles.create(path) bundle.deploy() - jobs = content.jobs.find_by(status=1) - assert len(jobs) == 1 + jobs = content.jobs.find_by() + assert len(jobs) != 0 diff --git a/integration/tests/posit/connect/test_packages.py b/integration/tests/posit/connect/test_packages.py index 02ae5a96..f322ddf9 100644 --- a/integration/tests/posit/connect/test_packages.py +++ b/integration/tests/posit/connect/test_packages.py @@ -9,7 +9,7 @@ @pytest.mark.skipif( - CONNECT_VERSION <= version.parse("2024.09.0"), + CONNECT_VERSION < version.parse("2024.10.0-dev"), reason="Packages API unavailable", ) class TestPackages: