Merge pull request #1406 from kauron/master

Fix test execution paths
This commit is contained in:
René Gieling 2021-04-15 18:47:12 +02:00 коммит произвёл GitHub
Родитель 02f1fcb3ab 81bcc3bb11
Коммит 993a12c57c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -113,5 +113,5 @@ appstore: clean lint build-js-production
.PHONY: test
test: composer
$(CURDIR)/vendor/phpunit/phpunit/phpunit --coverage-clover clover.xml -c phpunit.xml
$(CURDIR)/vendor/phpunit/phpunit/phpunit --coverage-clover clover.xml -c tests/phpunit.xml
$(CURDIR)/vendor/phpunit/phpunit/phpunit -c phpunit.integration.xml

Просмотреть файл

@ -21,5 +21,5 @@
*
*/
require_once __DIR__ . '/../../../tests/bootstrap.php';
require_once __DIR__ . '/../../../lib/base.php';
require_once __DIR__ . '/../vendor/autoload.php';

Просмотреть файл

@ -1,4 +1,4 @@
<phpunit bootstrap="../../../tests/bootstrap.php" colors="true">
<phpunit bootstrap="./bootstrap.php" colors="true">
<filter>
<whitelist>
<directory suffix=".php">lib</directory>