Forced breaks force a newline in a spot, which is sometimes what we want. (Like, this syntax should *never* be on a single line.)
7 lines
234 B
Makefile
7 lines
234 B
Makefile
# The first test just makes sure we don't have any particular dependencies at
|
|
# all, so it can be dropped into a random unrelated project for build
|
|
# purposes.
|
|
.PHONY: test
|
|
test:
|
|
python3 ./parser/parser.py
|
|
pdm run python3 -m pytest
|