This repository was archived by the owner on Jan 29, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +17
-52
lines changed
test/Controller/TestAsset Expand file tree Collapse file tree 5 files changed +17
-52
lines changed Original file line number Diff line number Diff line change 6
6
.travis.yml export-ignore
7
7
.php_cs export-ignore
8
8
phpunit.xml.dist export-ignore
9
- phpunit.xml.travis export-ignore
Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ install:
27
27
- travis_retry composer install --no-interaction --ignore-platform-reqs
28
28
29
29
script :
30
- - if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then ./vendor/bin/phpunit -c phpunit.xml.travis - -coverage-clover clover.xml ; fi
31
- - if [[ $EXECUTE_TEST_COVERALLS != 'true' ]]; then ./vendor/bin/phpunit -c phpunit.xml.travis ; fi
30
+ - if [[ $EXECUTE_TEST_COVERALLS == 'true' ]]; then ./vendor/bin/phpunit --coverage-clover clover.xml ; fi
31
+ - if [[ $EXECUTE_TEST_COVERALLS != 'true' ]]; then ./vendor/bin/phpunit ; fi
32
32
- if [[ $EXECUTE_CS_CHECK == 'true' ]]; then ./vendor/bin/php-cs-fixer fix -v --diff --dry-run ; fi
33
33
34
34
after_script :
Original file line number Diff line number Diff line change 28
28
functionality works as expected. Such tests include those for
29
29
Zend\Soap and Zend\Session, which require that headers not be sent
30
30
in order to work. -->
31
- <const name =" TESTS_ZEND_OB_ENABLED" value =" false" />
31
+ <env name =" TESTS_ZEND_OB_ENABLED" value =" false" />
32
32
33
33
</php >
34
34
</phpunit >
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- <?php
2
- /**
3
- * Zend Framework (http://framework.zend.com/)
4
- *
5
- * @link http://github.com/zendframework/zf2 for the canonical source repository
6
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
7
- * @license http://framework.zend.com/license/new-bsd New BSD License
8
- */
9
-
10
- namespace ZendTest \Mvc \Controller \TestAsset ;
11
-
12
- interface SampleInterface
13
- {
14
- }
1
+ <?php
2
+ /**
3
+ * Zend Framework (http://framework.zend.com/)
4
+ *
5
+ * @link http://github.com/zendframework/zf2 for the canonical source repository
6
+ * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
7
+ * @license http://framework.zend.com/license/new-bsd New BSD License
8
+ */
9
+
10
+ namespace ZendTest \Mvc \Controller \TestAsset ;
11
+
12
+ interface SampleInterface
13
+ {
14
+ }
You can’t perform that action at this time.
0 commit comments