-
-
Notifications
You must be signed in to change notification settings - Fork 4
Add benchmark for simplify to runtests.jl #251
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
base: main
Are you sure you want to change the base?
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
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.
Pull Request Overview
This PR adds comprehensive benchmarking for the simplify function and removes deprecated TestEnv fallback code across test files. The benchmark is integrated into the main test suite with performance monitoring and cross-platform compatibility.
- Adds
bench_simplify.jl
to production build tests inruntests.jl
- Implements performance benchmarking with platform-specific adjustments and Julia version considerations
- Removes TestEnv activation code from multiple test files, relying on proper project test environment setup
Reviewed Changes
Copilot reviewed 8 out of 8 changed files in this pull request and generated 2 comments.
Show a summary per file
File | Description |
---|---|
test/runtests.jl | Adds bench_simplify.jl to production build test suite |
test/bench_simplify.jl | Major refactor with subprocess benchmarking, performance reporting, and cross-platform adjustments |
test/test_kps4.jl | Removes TestEnv activation fallback |
test/test_kps3_fails.jl | Removes TestEnv activation with explanatory comment |
test/plot_kps4.jl | Removes TestEnv fallback with explanatory comment |
test/plot_kps3.jl | Removes TestEnv fallback with explanatory comment |
test/create_sys_image.jl | Removes TestEnv activation line |
test/bench4.jl | Removes TestEnv activation with explanatory comment |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
if ! ("Test" ∈ keys(Pkg.project().dependencies)) | ||
using TestEnv; TestEnv.activate() | ||
end | ||
# Removed TestEnv activation; assume the test target environment is active. |
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.
why remove this? nice if you want to run the test separately
Uh oh!
There was an error while loading. Please reload this page.