1
0
mirror of https://github.com/nginx-proxy/nginx-proxy synced 2024-09-20 02:43:10 +02:00
nginx-proxy/Makefile
Thomas LEVEIL 6069bc53cd TESTS: replace old test suite with the new one
get rid of Bats definitively
2017-02-17 00:29:30 +01:00

17 lines
339 B
Makefile

.SILENT :
.PHONY : test-debian test-alpine test
update-dependencies:
test/requirements/build.sh
test-debian: update-dependencies
docker build -t jwilder/nginx-proxy:test .
test/pytest.sh
test-alpine: update-dependencies
docker build -f Dockerfile.alpine -t jwilder/nginx-proxy:test .
test/pytest.sh
test: test-debian test-alpine