-
Notifications
You must be signed in to change notification settings - Fork 36
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
add docs-generating script that allows for specifying input and output path #1466
base: main
Are you sure you want to change the base?
Conversation
.github/workflows/docs.py
Outdated
os.chdir(code_path) | ||
os.environ["PDOC_ALLOW_EXEC"] = "1" | ||
|
||
for notebook_path in glob.glob("examples/PySDM_examples/*/*.ipynb"): |
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.
we could use the devops_tests
find_files
function that limits the search to files tracked in git: https://github.com/open-atmos/devops_tests/blob/8eb4d96a1ea8afa09a409a99dccbd0ddd48f80a7/utils.py#L10
Thanks @Sfonxu! I've added a few comments that could help make the code more bullet-proof |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1466 +/- ##
=======================================
Coverage 85.22% 85.22%
=======================================
Files 376 376
Lines 9265 9265
=======================================
Hits 7896 7896
Misses 1369 1369 ☔ View full report in Codecov by Sentry. |
regarding #1445