-
Notifications
You must be signed in to change notification settings - Fork 2
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
test: Add execution test framework #97
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #97 +/- ##
==========================================
+ Coverage 81.67% 81.77% +0.10%
==========================================
Files 19 19
Lines 2641 2705 +64
Branches 2641 2705 +64
==========================================
+ Hits 2157 2212 +55
- Misses 304 308 +4
- Partials 180 185 +5
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@@ -71,6 +140,9 @@ impl SimpleHugrConfig { | |||
.define_function("main", HugrFuncType::new(self.ins, self.outs)) | |||
.unwrap(); | |||
make(func_b, &self.extensions); | |||
|
|||
// println!("{}", mod_b.hugr().mermaid_string()); |
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.
Remove.
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.
This is intentional. I have added a comment explaining.
Co-authored-by: Alec Edgington <54802828+cqc-alec@users.noreply.github.com>
## 🤖 New release * `hugr-llvm`: 0.4.0 -> 0.5.0 <details><summary><i><b>Changelog</b></i></summary><p> <blockquote> ## [0.5.0](v0.4.0...v0.5.0) - 2024-09-16 ### New Features - Add emitters for int <-> float/usize conversions ([#94](#94)) - [**breaking**] array ops ([#96](#96)) - Add conversions itobool, ifrombool ([#101](#101)) - Add `tket2` feature and lowerings for `tket2.rotation` extension ([#100](#100)) ### Testing - Add execution test framework ([#97](#97)) </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/MarcoIeni/release-plz/).
No description provided.