-
Notifications
You must be signed in to change notification settings - Fork 8
ci: Use with-connect instead of bespoke integration test setup #429
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
☂️ Python Coverage
Overall Coverage
New FilesNo new covered files... Modified FilesNo covered modified files...
|
tdstein
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the GitHub Action logs, the status messages from with-connect are showing after the pytests are run. Is that normal? https://github.com/posit-dev/posit-sdk-py/actions/runs/19170009585/job/54799850272#step:5:197
|
I use the |
Yeah it appears stdout isn't flushing--if you add the timestamps you can see that everything prints at the end. That's not what I had been seeing elsewhere: when I ran on I think I dropped the |
…ify CI workflow Add a new Makefile for integration tests that: - Dynamically allocates available ports using Python socket binding - Parses CONNECT_VERSION correctly from Make target patterns - Supports running tests for individual or all Connect versions - Includes comprehensive help documentation Update CI workflow to: - Extract Connect versions dynamically from the Makefile - Simplify the integration test matrix setup - Eliminate duplicate version list maintenance 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
2937ebd to
cc58ade
Compare
|
@nealrichardson - I factored back out into the Makefile and added a script that allocates a random port so that I can run the test suite against multiple versions of Connect in paralle. Might be worth porting that over to |
integration/Makefile
Outdated
| CONNECT_VERSIONS := \ | ||
| 2025.10.0 \ | ||
| 2025.09.1 \ | ||
| 2025.09.0 \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
IDK that we need to test 09.0 and 09.1 both, I think we can save the ⚡
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, I was considering latest patch here too
This looks good to me; I can't "approve" because I created the PR, so please merge when you're done with this. |
Also bumps github action versions and adds latest Connect releases to the matrix.