Files
kapow/testutils/poc/Makefile
Roberto Abdelkader Martínez Pérez dd8b5895bd Moving poc under testutils directory.
2020-01-24 11:58:57 +01:00

17 lines
281 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
fix:
KAPOW_DATAAPI_URL=http://localhost:8081 pipenv run make -C ../../spec/test fix
clean:
pipenv --rm
make -C ../../spec/test clean