forked from great-expectations/great_expectations
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[DOCS] Preparation for building api docs (great-expectations#6737)
- Loading branch information
1 parent
cab1562
commit 2d916aa
Showing
6 changed files
with
119 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/bin/bash | ||
|
||
# Build API docs then build docusaurus docs. | ||
# Currently used in our netlify pipeline. | ||
# Note: Will be modified to build API docs on latest tagged release. | ||
|
||
echo "Installing dev dependencies" | ||
pip install -c constraints-dev.txt -e ".[test]" | ||
|
||
echo "Installing dev dependencies" | ||
(cd docs/sphinx_api_docs_source; pip install -r requirements-dev-api-docs.txt) | ||
|
||
echo "Building sphinx API docs." | ||
(cd docs/sphinx_api_docs_source; invoke docs) | ||
|
||
echo "Building docusaurus docs." | ||
yarn build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters