-
Notifications
You must be signed in to change notification settings - Fork 27
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
Build flag management #202
Conversation
Addresses #198 Overview:
(Note, the rationale here is that during development it can be useful to allow some warnings, but warnings should be caught in pushed code. We can moify this if there are differing opinions.) |
c100625
to
d7683a0
Compare
|
||
namespace | ||
{ | ||
|
||
fs::path g_testdata_dir = fs::path("..") / "testdata"; |
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.
Wouldn't it be possible to use an environment variable here? Otherwise we need to assume that the tests are written from a specific location (else, we end up writing testdata
in the user's filesystem)
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.
Oh, just realized that you overwrote this global variable before running the tests..
No description provided.