mirror of
https://github.com/yihong0618/bilingual_book_maker.git
synced 2025-06-04 02:20:18 +00:00
10 lines
164 B
Makefile
10 lines
164 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
|