fromozu commited on
Commit
63d9427
·
verified ·
1 Parent(s): 3825be6

Upload bilingual_book_maker/Makefile with huggingface_hub

Browse files
Files changed (1) hide show
  1. bilingual_book_maker/Makefile +13 -0
bilingual_book_maker/Makefile ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ SHELL := /bin/bash
2
+
3
+ fmt:
4
+ @echo "Running formatter ..."
5
+ venv/bin/black .
6
+
7
+ .PHONY:tests
8
+ tests:
9
+ @echo "Running tests ..."
10
+ venv/bin/pytest tests/test_integration.py
11
+
12
+ serve-docs:
13
+ mkdocs serve