Fix: assert while testing
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Bertrand Benjamin 2020-08-21 19:31:22 +02:00
parent 369cc1ca42
commit 2de098cfd5
1 changed files with 1 additions and 1 deletions

View File

@ -10,4 +10,4 @@ if __name__ == "__main__":
snippets_dir = Path(SNIPPETS_DIR)
for snippet in snippets_dir.rglob("tpl_*.tex"):
print(snippet)
os.system(f"bopytex -n {snippet}")
assert os.system(f"bopytex -n {snippet}") == 0