summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMS <ms@taler.net>2020-11-13 22:21:18 +0100
committerMS <ms@taler.net>2020-11-13 22:22:37 +0100
commitea502185c7e76f49724e970350bb40588f7037b3 (patch)
tree90e290f1416bbb06ab9e09e28cc2597509bbaedb /Makefile
parent5a8ac4b3cad1340b0ce01ac7432c3c59c2b4af80 (diff)
downloadlibeufin-ea502185c7e76f49724e970350bb40588f7037b3.tar.gz
libeufin-ea502185c7e76f49724e970350bb40588f7037b3.tar.bz2
libeufin-ea502185c7e76f49724e970350bb40588f7037b3.zip
Integration tests.
Preparing services and let pytest be launched via Makefile.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 4c22294b..a454ceb9 100644
--- a/Makefile
+++ b/Makefile
@@ -39,3 +39,8 @@ assemble:
.PHONY: check
check:
@./gradlew check
+
+
+.PHONY: tests
+tests:
+ @cd integration-tests; py.test tests.py; cd ..