-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* New runner * added help and shell + logging * resolve symlink
- Loading branch information
1 parent
c6ce880
commit 86eae0f
Showing
2 changed files
with
112 additions
and
35 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import pytinytex | ||
from .utils import download_tinytex, TINYTEX_DISTRIBUTION # noqa | ||
|
||
def test_run_help(download_tinytex): # noqa | ||
exit_code, output = pytinytex.help() | ||
assert exit_code == 0 | ||
assert "TeX Live" in output | ||
|