-
Notifications
You must be signed in to change notification settings - Fork 471
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
The file CMakeTests.cmake
is no longer included if ENABLE_TESTING
is off
#609
The file CMakeTests.cmake
is no longer included if ENABLE_TESTING
is off
#609
Conversation
@@ -6,6 +6,11 @@ The public API of this library consists of the functions declared in file | |||
[h3api.h.in](./src/h3lib/include/h3api.h.in). | |||
|
|||
## [Unreleased] | |||
### Fixed | |||
- Fix polyfill bug when vertex latitude exactly matches cell center. (#603) |
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.
🙏
option(BUILD_ALLOC_TESTS "Build tests for custom allocation functions" ON) | ||
option(PRINT_TEST_FILES "Print which test files correspond to which tests" OFF) | ||
|
||
include(TestWrapValgrind) |
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 visual diff here is lousy, but I assume from here on down it's just indentation changes?
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.
Correct, there should be no substantive changes to this file. Reindenting in VS Code and comparing to master I see only a couple lines where indents differ but no other changes.
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.
You can tell github diff to ignore indentation and then it clears up here.
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.
CMakeTests.txt
is no longer included if ENABLE_TESTING
is offCMakeTests.cmake
is no longer included if ENABLE_TESTING
is off
This is a quick solution for uber/h3-py#239, but does not address the underlying issue of the file not being found. I do think this is useful because it allows us to unindent the
CMakeTests.cmake
file.Also fixed a missing CHANGELOG item for #603