-
Notifications
You must be signed in to change notification settings - Fork 6
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
chore: update to pyo3 0.23.2 and tket-json-rs 0.7.1 #709
Conversation
This PR contains breaking changes to the public Rust API. cargo-semver-checks summary
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #709 +/- ##
==========================================
- Coverage 82.85% 82.79% -0.07%
==========================================
Files 62 62
Lines 7140 7115 -25
Branches 6887 6862 -25
==========================================
- Hits 5916 5891 -25
Misses 861 861
Partials 363 363
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@@ -77,21 +78,24 @@ fn validate_serial_circ(circ: &SerialCircuit) { | |||
for command in &circ.commands { | |||
for arg in &command.args { | |||
assert!( | |||
circ.qubits.contains(arg) || circ.bits.contains(arg), | |||
circ.qubits.contains(®ister::Qubit::from(arg.clone())) |
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.
added clones but figure it is ok in tests
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.
Do you know why the coverage check is failing?
No description provided.