33 lines
1.3 KiB
Makefile
33 lines
1.3 KiB
Makefile
#######################################################
|
|
# DO NOT EDIT THIS FILE! #
|
|
# #
|
|
# It's auto-generated by symfony-cmf/dev-kit package. #
|
|
#######################################################
|
|
|
|
############################################################################
|
|
# This file is part of the Symfony CMF package. #
|
|
# #
|
|
# (c) 2011-2017 Symfony CMF #
|
|
# #
|
|
# For the full copyright and license information, please view the LICENSE #
|
|
# file that was distributed with this source code. #
|
|
############################################################################
|
|
|
|
TESTING_SCRIPTS_DIR=vendor/symfony-cmf/testing/bin
|
|
CONSOLE=${TESTING_SCRIPTS_DIR}/console
|
|
VERSION=dev-master
|
|
ifdef BRANCH
|
|
VERSION=dev-${BRANCH}
|
|
endif
|
|
PACKAGE=symfony-cmf/routing
|
|
list:
|
|
@echo 'test: will run all tests'
|
|
@echo 'unit_tests: will run unit tests only'
|
|
|
|
|
|
|
|
include ${TESTING_SCRIPTS_DIR}/make/unit_tests.mk
|
|
|
|
.PHONY: test
|
|
test: unit_tests
|