We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
What kind of issue is this?
Operating system: OSX Sonoma 14.5
PlatformIO Version (platformio --version): 6.1.15
platformio --version
I wanted to create a custom test runner based on the doctest runner so that I could include the doctest library in my sources.
platformio/public.py doesn't import DoctestTestRunner but instead imports DoctestTestCaseParser. source
platformio/public.py
DoctestTestRunner
DoctestTestCaseParser
I changed the import locally to DoctestTestRunner and now my custom test runner works.
The text was updated successfully, but these errors were encountered:
7b587ba
No branches or pull requests
What kind of issue is this?
If you’ve found a bug, please provide an information below.
Configuration
Operating system: OSX Sonoma 14.5
PlatformIO Version (
platformio --version
): 6.1.15Description of problem
I wanted to create a custom test runner based on the doctest runner so that I could include the doctest library in my sources.
platformio/public.py
doesn't importDoctestTestRunner
but instead importsDoctestTestCaseParser
. sourceI changed the import locally to
DoctestTestRunner
and now my custom test runner works.The text was updated successfully, but these errors were encountered: