diff --git a/Makefile b/Makefile index c20e0718..bb1cbdb2 100644 --- a/Makefile +++ b/Makefile @@ -37,6 +37,11 @@ clean: test: > cargo test --lib --test test_loader -- --test-threads $(TESTJOBS) +.PHONY: dockertest +dockertest: +> $(MAKE) -C docker/organic_test +> docker run --rm -i -t -v "$$(readlink -f ./):/.source:ro" -w / organic-test sh -c "cp -r /.source /source && cd /source && cargo test" + .PHONY: integrationtest integrationtest: > cargo test --no-fail-fast --test test_loader -- --test-threads $(TESTJOBS)