You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a ci job who generates coverage that also executes the binaries. These binaries need to be generated in the target/llvm-cov/ directory? There looks to be no way to build these, without just running cargo llvm-cov and ignoring the run result. These tests are run in a different package backhand-test that run the backhand-cli binaries, all in the same workspace.
For information, the execution in the tests happens here
The text was updated successfully, but these errors were encountered:
What is the actual error you received?
The location of the compiled binaries can be obtained via the CARGO_BIN_EXE_<bin_name> environment variable, but IIUC assert_cmd refers to that environment variable, so at least for assert_cmd, I don't think we need to worry about that.
I have a ci job who generates coverage that also executes the binaries. These binaries need to be generated in the
target/llvm-cov/
directory? There looks to be no way to build these, without just runningcargo llvm-cov
and ignoring the run result. These tests are run in a different packagebackhand-test
that run thebackhand-cli
binaries, all in the same workspace.For information, the execution in the tests happens here
The text was updated successfully, but these errors were encountered: