-
Notifications
You must be signed in to change notification settings - Fork 3
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
ci: optional tests fail in CI #505
base: main
Are you sure you want to change the base?
Conversation
5e6f699
to
b96cf26
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #505 +/- ##
=======================================
Coverage 91.54% 91.54%
=======================================
Files 60 60
Lines 6130 6130
=======================================
Hits 5612 5612
Misses 518 518 ☔ View full report in Codecov by Sentry. |
pytest.fail("Validator not installed") | ||
else: | ||
pytest.skip( | ||
"Skipping validation: Run `cargo build` to install the validator" |
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.
|
||
except ImportError as e: | ||
if IN_CI: | ||
pytest.fail(f"run_int_fn failed in CI: {e}") |
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 should be something like "execute_llvm not installed in CI"
No description provided.