10 lines
140 B
Makefile
10 lines
140 B
Makefile
.PHONY: sync test
|
|
|
|
all: test
|
|
|
|
sync:
|
|
pipenv sync --dev
|
|
|
|
test: sync
|
|
KAPOW_DATAAPI_URL=http://localhost:8081 pipenv run make -C ../spec/test
|