mathml-to-latex/makefile
2021-09-20 22:23:12 -03:00

14 lines
269 B
Makefile

# TEST
test_compose = docker-compose -f docker-compose.test.yml
.PRONY: test-build
test-build:
$(test_compose) build
.PRONY: test
test:
make test-build && $(test_compose) run mathml-to-latex-test && make test-down
.PRONY: test-down
test-down:
$(test_compose) down