-
Notifications
You must be signed in to change notification settings - Fork 2.4k
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
Enable PyO3 in cargo unit tests. #13169
Open
kevinhartman
wants to merge
19
commits into
Qiskit:main
Choose a base branch
from
kevinhartman:cargo-test-dag
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
ba48d55
POC for using PyO3 in cargo unit tests.
kevinhartman 4425ac1
Reorder jobs in test-linux.yml.
kevinhartman 63501bc
Actually use the venv...
kevinhartman 2fd982f
Disable Miri for PyO3-based cargo tests.
kevinhartman 1b594c1
Fix disable for module-level.
kevinhartman d5d4714
Improve comment in Rust test runner CI job.
kevinhartman 63d6334
Use pyo3/auto-initialize feature in test.
kevinhartman f0925e7
Update contibuting guide.
kevinhartman 86ec338
Testing for push_back and push_front.
kevinhartman 578f01f
Add tox rust env for Cargo tests.
kevinhartman 65a90d3
Set Python user base in CI.
kevinhartman 00c9158
Merge branch 'main' of github.com:Qiskit/qiskit into cargo-test-dag
kevinhartman d33060d
Clean up.
kevinhartman 234b6a5
Address review comments.
kevinhartman 6856adb
Set RUST_DEBUG in pkg env for Tox rust env.
kevinhartman 4813a7c
Explain --skip-pkg-install option for faster run.
kevinhartman f72fb14
Fix typo.
kevinhartman 2bdee8d
Update TOC.
kevinhartman d648af6
Merge branch 'main' of github.com:Qiskit/qiskit into cargo-test-dag
kevinhartman File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.
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.
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.
My only concern here is that this results in building Qiskit from source twice on every execution. I'm not sure there is a way around this since we need the python extension built to be able to call it via python in the rust tests it just is pretty slow. We should probably build in debug mode by default in tox and for rust testing by default.
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.
I've enabled debug mode by default for the
rust
env's package environment in 6856adb.I also documented
--skip-pkg-install
as an option for running without rebuilding Qiskit when invokingtox -erust
, and I've explained there that this is only an option if you've already built the current working tree: 4813a7c