We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Compiler's collect_tests adds whole paths in the filesystem to test names that are defined inline with the implementation.
collect_tests
e.g. /abs/path/to/file/src::test_fib instead of just src::test_fib
/abs/path/to/file/src::test_fib
src::test_fib
In #1999 basic handling for this was added by just stripping the path from the name.
We should introduce the required changes to test collecting so paths are not included in the first place and remove the stripping logic.
There's a high chance this is related to #2092, so we should first resolve #2092 before starting this issue.
The text was updated successfully, but these errors were encountered:
@cptartur Can you provide some explanation here please 🥺
Sorry, something went wrong.
Working on it
Blocked by #2092
No longer blocked
No branches or pull requests
Compiler's
collect_tests
adds whole paths in the filesystem to test names that are defined inline with the implementation.e.g.
/abs/path/to/file/src::test_fib
instead of just
src::test_fib
In #1999 basic handling for this was added by just stripping the path from the name.
We should introduce the required changes to test collecting so paths are not included in the first place and remove the stripping logic.
There's a high chance this is related to #2092, so we should first resolve #2092 before starting this issue.
The text was updated successfully, but these errors were encountered: