10 lines
94 B
Makefile
10 lines
94 B
Makefile
.PHONY: sync test
|
|
|
|
all: test
|
|
|
|
sync:
|
|
pipenv sync
|
|
|
|
test: sync
|
|
pipenv run make -C ../spec/test
|