summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2017-04-15 14:37:49 +0200
committerPierre Schmitz <pierre@archlinux.de>2017-04-15 14:37:49 +0200
commit446edc13a9b3e354f93f05bf46be484a5d5f10e7 (patch)
tree54fb1cf6b26620cf51cabdbcb498ae60908d4731 /Makefile
parent282bf65c81e278b9237b4c202d325642bc0aa1a3 (diff)
Run tests using docker
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..3a59211
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,7 @@
+test-image:
+ docker build --pull -t dbscripts/test test
+
+test: test-image
+ docker run --rm --network=none -v $(PWD):/dbscripts:ro --tmpfs=/tmp:exec -w /dbscripts/test dbscripts/test ./runTest
+
+.PHONY: test-image test