Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Haertl <jus@bitgrid.net>2017-02-28 17:20:29 +0300
committerJulius Haertl <jus@bitgrid.net>2017-02-28 20:35:32 +0300
commitcf03e08d1ebe917db4f64a07a4db04c99c28cb97 (patch)
tree7c6f4e56bbbecc2240393b79b4bd2783a5c8da6f /Makefile
parent90e0c57224bfedd61385b66d359b77ee2b50fd23 (diff)
Use drone for testing
Signed-off-by: Julius Haertl <jus@bitgrid.net>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8858a0b2..8982e959 100644
--- a/Makefile
+++ b/Makefile
@@ -72,7 +72,6 @@ appstore: clean-build build
test:
mkdir -p build/
- cd js && $(npm) run test
ifeq (, $(shell which phpunit 2> /dev/null))
@echo "No phpunit command available, downloading a copy from the web"
mkdir -p $(build_tools_directory)
@@ -83,3 +82,7 @@ else
phpunit -c tests/phpunit.xml --coverage-clover build/php-unit.coverage.xml
phpunit -c tests/phpunit.integration.xml --coverage-clover build/php-integration.coverage.xml
endif
+
+test-js:
+ cd js && run test
+