mirror of
https://github.com/yihong0618/bilingual_book_maker.git
synced 2025-06-01 00:50:12 +00:00
14 lines
192 B
Makefile
14 lines
192 B
Makefile
SHELL := /bin/bash
|
|
|
|
fmt:
|
|
@echo "Running formatter ..."
|
|
venv/bin/black .
|
|
|
|
.PHONY:tests
|
|
tests:
|
|
@echo "Running tests ..."
|
|
venv/bin/pytest tests/test_integration.py
|
|
|
|
serve-docs:
|
|
mkdocs serve
|