diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-09-06 14:28:06 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-09-06 14:28:06 -0400 |
commit | b0994ba68e7cbaa077d81006fb0f25bcbd049353 (patch) | |
tree | 218b4a1e289f1e6d05ca774486d3d259a4e5dfa7 /Makefile | |
parent | 3c0b56bc0214d2b0ad561a9001240ae73dea8e64 (diff) |
Add unit tests for LDAP and ReverseProxy auth
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -77,4 +77,15 @@ archive: @ cd ${dst} && if [ -L kanboard-latest.zip ]; then unlink kanboard-latest.zip; ln -s kanboard-${version}.zip kanboard-latest.zip; fi @ rm -rf ${BUILD_DIR}/kanboard +test-sqlite: + @ phpunit -c tests/units.sqlite.xml + +test-mysql: + @ phpunit -c tests/units.mysql.xml + +test-postgres: + @ phpunit -c tests/units.postgres.xml + +unittest: test-sqlite test-mysql test-postgres + .PHONY: all |