-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: justfile, python version fix, easier doc deploy (#106)
* fix docs * make it easier to deploy docs, fix python version in tests
- Loading branch information
1 parent
913063e
commit 01e84c3
Showing
8 changed files
with
44 additions
and
24 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
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 was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
test-quick: | ||
uv run --group dev pytest \ | ||
--ignore=tests/test_large_vocab.py \ | ||
--ignore=tests/test_speed.py | ||
|
||
test: | ||
uv run --group dev pytest | ||
|
||
serve-docs: | ||
uv run --group docs mkdocs serve | ||
|
||
[confirm] | ||
publish-docs: | ||
# make sure the remote exists | ||
git remote -v | grep deploy-doc > /dev/null || git remote add deploy-docs [email protected]:jitsi/jiwer.git | ||
git remote set-url deploy-docs [email protected]:jitsi/jiwer.git | ||
|
||
# push to deploy-docs remote and gh-pages branch | ||
uv run --group docs mkdocs gh-publish -r deploy-docs -b gh-pages |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.