-
Notifications
You must be signed in to change notification settings - Fork 180
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
Fix the execution of NPY tests #2842
Conversation
The Python and C++ testing tools are executed by other tests and need to reside in tools. For C++, the tools are automatically compiled to the build directory. A Python tool needs to be manually copied.
clang-tidy review says "All clean, LGTM! 👍" |
1 similar comment
clang-tidy review says "All clean, LGTM! 👍" |
clang-tidy review says "All clean, LGTM! 👍" |
clang-tidy review says "All clean, LGTM! 👍" |
clang-tidy review says "All clean, LGTM! 👍" |
Did just a little bit of re-arrangement.
|
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.
Confirmed working locally & executing in CI.
As mentioned in #2836, when #2437 was merged, NPY tests were mistakenly added to the codebase without accounting for the new testing structure post CMake.
This PR aims to address that following the discussion in #2836.
In particular, the CMake logic for our "unit tests" and any executables (under
testing/tools
) used by a test has now been modified to account for Python files.