10 lines
87 B
Makefile
10 lines
87 B
Makefile
.DEFAULT_GOAL := test
|
|
|
|
.PHONY: test
|
|
test:
|
|
-pytest $(TEST_ARGS)
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
|