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
I'm running doctests in a file with a xdoctest main block (i.e. xdoctest.doctest_module(__file__)) using the command
xdoctest.doctest_module(__file__)
python ~/code/netharn/netharn/examples/yolo_voc.py all
When failures are reported they are printed as
python -m xdoctest yolo_voc YoloVOCDataset:1 python -m xdoctest yolo_voc YoloVOCDataset.__getitem__:0 python -m xdoctest yolo_voc YoloVOCDataset.__getitem__:1
This is incorrect because yolo_voc is not a module in my PYTHONPATH.
yolo_voc
It would be good to:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm running doctests in a file with a xdoctest main block (i.e.
xdoctest.doctest_module(__file__)
) using the commandpython ~/code/netharn/netharn/examples/yolo_voc.py all
When failures are reported they are printed as
This is incorrect because
yolo_voc
is not a module in my PYTHONPATH.It would be good to:
The text was updated successfully, but these errors were encountered: