Add some initial v0.3.0 API testing in daily integration tests#1358
Open
bharat-thotakura wants to merge 59 commits into
Open
Add some initial v0.3.0 API testing in daily integration tests#1358bharat-thotakura wants to merge 59 commits into
v0.3.0 API testing in daily integration tests#1358bharat-thotakura wants to merge 59 commits into
Conversation
Signed-off-by: Bharath <bharath.thotakura@infleqtion.com>
Signed-off-by: Bharath <bharath.thotakura@infleqtion.com>
Signed-off-by: Bharath <bharath.thotakura@infleqtion.com>
Signed-off-by: Bharath <bharath.thotakura@infleqtion.com>
Signed-off-by: Bharath <bharath.thotakura@infleqtion.com>
Signed-off-by: Bharath <bharath.thotakura@infleqtion.com>
Signed-off-by: Bharath <bharath.thotakura@infleqtion.com>
Signed-off-by: Bharath <bharath.thotakura@infleqtion.com>
0c0dab8 to
c1688ba
Compare
Signed-off-by: Bharath <bharath.thotakura@infleqtion.com>
Signed-off-by: Bharath <bharath.thotakura@infleqtion.com>
Signed-off-by: Bharath <bharath.thotakura@infleqtion.com>
Signed-off-by: Bharath <bharath.thotakura@infleqtion.com>
Signed-off-by: Bharath <bharath.thotakura@infleqtion.com>
bharat-thotakura
added a commit
that referenced
this pull request
Mar 18, 2026
Presently, the daily integration test workflow uses only 2 workers from `pytest-xdist` and generally can take a while to finish, waiting on some slower tests relative to others. Anticipating #1358, which [will slow down](https://github.com/Infleqtion/client-superstaq/actions/runs/22884111478) the workflow even more, this PR adds `pytest-split` to break up the (current) total of 44 unit tests from the `css` and `qss` integration tests combined into 4 concurrent workflows, each using 2 workers. (Note: the tests are split up evenly across the 4 workflows (called 'groups'), but `pytest-split` can unevenly group time-consuming tests if given `pytest` timing info) Additionally, on a more speculative & hopeful note, this PR also applies `pytest-split` on the three notebook checks in the regular CI to continue to mitigate against #1129 (with the idea being that each concurrent workflow should now only assign 1 notebook per worker (of course, subject to change if new notebooks are added)). In [initial testing](https://github.com/Infleqtion/client-superstaq/actions/runs/22887601930/job/66403774452), this did not seem to offer much in time reduction due to the small number of notebooks being tested to begin with (& the worker overhead perhaps), but this approach might still be worth experimenting with. Lastly, to confer any potential speed benefits, this PR also updates all relevant CI jobs to use Python 3.14 from the previous Python 3.13 --------- Signed-off-by: Bharath <bharath.thotakura@infleqtion.com> Co-authored-by: richrines1 <85512171+richrines1@users.noreply.github.com>
Signed-off-by: Bharath <bharath.thotakura@infleqtion.com>
This reverts commit a1851b7.
Contributor
Author
|
An example integration test workflow against this branch can be found here |
Signed-off-by: Bharath <bharath.thotakura@infleqtion.com>
Signed-off-by: Bharath <bharath.thotakura@infleqtion.com>
Contributor
Author
|
Integration test has now passed against the latest commits |
Contributor
Author
|
Looks like the |
Signed-off-by: Bharath <bharath.thotakura@infleqtion.com>
Signed-off-by: Bharath <bharath.thotakura@infleqtion.com>
Signed-off-by: Bharath <bharath.thotakura@infleqtion.com>
Signed-off-by: Bharath <bharath.thotakura@infleqtion.com>
Signed-off-by: Bharath <bharath.thotakura@infleqtion.com>
Signed-off-by: Bharath <bharath.thotakura@infleqtion.com>
| python -m pip install --upgrade pip | ||
| python -m pip install ${{ matrix.dependencies }} | ||
| - name: Pytest integration check (group ${{ matrix.group }} of 2) | ||
| python -m pip install -e ./general-superstaq |
Contributor
Author
There was a problem hiding this comment.
To remove python -m pip install -e ./general-superstaq before merging
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Closes #1354