1
0
mirror of https://github.com/dannyvankooten/AltoRouter.git synced 2025-08-06 16:36:43 +02:00

Merge pull request #107 from dannyvankooten/phpunit-config

Use local phpunit
This commit is contained in:
Koen Punt
2015-03-02 15:41:30 +01:00
4 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@@ -5,3 +5,4 @@ Gemfile.lock
build build
vendor vendor
composer.lock composer.lock
phpunit.xml

View File

@@ -8,7 +8,7 @@ php:
install: install:
- composer install --dev - composer install --dev
script: script:
- phpunit -c phpunit.xml - ./vendor/bin/phpunit
after_script: after_script:
- ./vendor/bin/test-reporter - ./vendor/bin/test-reporter
env: env:

View File

@@ -30,6 +30,6 @@
"classmap": ["AltoRouter.php"] "classmap": ["AltoRouter.php"]
}, },
"scripts": { "scripts": {
"test": "vendor/bin/phpunit AltoRouterTest.php" "test": "vendor/bin/phpunit"
} }
} }