-
-
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
feat: Add support for globs in paths configuration #34
feat: Add support for globs in paths configuration #34
Conversation
mkdocs.yml
Outdated
paths: | ||
- src/* |
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.
I only made this change as a test to ensure things are working as expected when running make docs-serve
. I can remove it, but I wanted to include it initially to show how I tested.
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.
Sure, you can remove it now, thanks.
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.
Done
This change allows for values in the paths configuration option to be globs by resolving them before passing them off to griffe. fixes mkdocstrings#33
5a41773
to
749e48c
Compare
These failures don't appear to be related to my change. I encountered these same failures when attempting to run tests on the main branch without my changes as well. |
Oh, indeed, sorry about that. Let me fix these first. |
@pawamoy Friendly ping to see if we can get this merged |
Thanks for the ping! LGTM, merging 🙂 |
This change allows for values in the paths configuration option to be
globs by resolving them before passing them off to griffe.
fixes #33