-
Notifications
You must be signed in to change notification settings - Fork 42
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 SKIP_DEPRECATED functionality to ign-common #300
Conversation
Signed-off-by: Michael Carroll <[email protected]>
Codecov Report
@@ Coverage Diff @@
## main #300 +/- ##
=======================================
Coverage 77.13% 77.13%
=======================================
Files 76 76
Lines 10540 10540
=======================================
Hits 8130 8130
Misses 2410 2410 Continue to review full report at Codecov.
|
@@ -40,6 +40,15 @@ elseif(WIN32) | |||
option(USE_EXTERNAL_TINYXML2 "Use a system-installed version of tinyxml2" OFF) | |||
endif() | |||
|
|||
#-------------------------------------- | |||
# Option: Should we skip tests of deprecated functionality | |||
option(SKIP_DEPRECATED_TESTS "Skip testing deprecated funcationality" OFF) |
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.
Reading the description, I would have a question: is this skipping the build of the deprecated tests or is this skipping the run of the deprecated 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.
Reading the description, I would have a question: is this skipping the build of the deprecated tests or is this skipping the run of the deprecated tests?
The idea is to skip both. This would primarily be for local development as building/running those tests isn't particularly valuable when you are iterating quickly.
Looks good to me the feature. Do you prefer going on here or move it to |
I'm going to make an ign-cmake version, I think it makes more sense there. |
Implementation of gazebosim/gz-cmake#204