-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
Add ctest execution to coverage reporting #14046
base: main
Are you sure you want to change the base?
Conversation
This commit updates the coverage CI job to also include execution of the C API tests. Right now the cext crate is showing 0 coverage because we only test it without instrumention and don't collect any coverage numbers for the C API testing. This commit adds a ctest execution to the coverage job to provide coverage numbers for our C API testing.
One or more of the following people are relevant to this code:
|
Pull Request Test Coverage Report for Build 14204461479Warning: This coverage report may be inaccurate.This pull request's base commit is no longer the HEAD commit of its target branch. This means it includes changes from outside the original pull request, including, potentially, unrelated coverage changes.
Details
💛 - Coveralls |
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.
The Coveralls report (clicking through to it) isn't showing an increase in the cext
crate coverage - is this working the way you expect yet?
Not yet, the makefile isn't setup to handle the environment variables I'm setting to enable coverage collection so it's not building the instrumented library. I was debating between either running the tests manually without make or editing the makefile at the end of day yesterday. |
The most recent commit has the coverage collection working now: https://coveralls.io/jobs/162457981/source_files/1455686271 However the tradeoff here is I've made a bit of a mess of the cmake file and make file to support this. Basically for coverage we want to be building in debug mode but all the C test build automation is around reusing the makefile. The makefile is setup to support building a proper C dynlib for end user consumption in release mode which make sense if you do |
This commit updates the makefile organization to add a debug mode path and a release mode path. The debug mode path is needed for running the ctests, while release mode is what we want to use for building the clib for direct use. With this the makefile is able to build in either release mode or debug mode and the targets are setup so we default to release mode unless debug is explicitly needed.
This should be good to go now, I split out the build targets in the makefile so we have separate paths for debug and release, and then updated the |
cheader: $(C_QISKIT_H) | ||
c: $(C_LIBQISKIT) $(C_QISKIT_H) | ||
|
||
# Use ctest to run C API tests | ||
ctest: $(C_LIB_CARGO_PATH) $(C_QISKIT_H) | ||
ctest: $(C_LIB_DEBUG_CARGO_PATH) $(C_QISKIT_H) |
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.
The tests are very small right now so compiling in Debug is fine, but wouldn't it generally make more sense to run in release mode for more speed? Or do you want to avoid building twice, once for coverage and once for the 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.
I don't think it's really going to be an issue for a long time. Right now the compilation of the rust code and the test binary takes slightly more than 1.5min and the tests only take 0.02 sec. So we're a long time away from where I think we need to be worried about the test execution time. I generally think having the debug symbols for tests is a good thing too, although maybe not in CI.
Co-authored-by: Julien Gacon <[email protected]>
Summary
This commit updates the coverage CI job to also include execution of the C API tests. Right now the cext crate is showing 0 coverage because we only test it without instrumention and don't collect any coverage numbers for the C API testing. This commit adds a ctest execution to the coverage job to provide coverage numbers for our C API testing.
Details and comments