summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 17d933c00..c711f82a9 100644
--- a/Makefile
+++ b/Makefile
@@ -30,16 +30,22 @@ clean:
rm -rf $(build_directory)
-dist: clean
+dist: clean test
mkdir -p $(build_directory)
git archive HEAD --format=zip --prefix=$(app_name)/ > $(package_name).zip
test: unit integration acceptance
+
unit:
+ phpunit tests/unit
+
integration:
+ phpunit tests/integration
+
acceptance:
+ # TODO