-
Notifications
You must be signed in to change notification settings - Fork 177
Open
Labels
Description
options.integration
does not accept doctest
value.
Steps to reproduce:
- create conanfile.txt with following option:
[options]
fakeit/2.4.1:integration=doctest
- Run
conan install
expected outcome:
conan install
will succedd with doctest integration configured.
actual outcome:
conan install
fails with following error:
ERROR: 'doctest' is not a valid 'options.integration' value.
Possible values are ['boost', 'catch', 'cute', 'gtest', 'mettle', 'nunit', 'mstest', 'qtest', 'standalone', 'tpunit']
I patched the package locally and it worked, but I had to change include from doctest.h
to doctest/doctest.h
. I'm willing to open a PR, but I don't know how breaking that change would be.