Skip to content
This repository has been archived by the owner on Jun 7, 2018. It is now read-only.

Commit

Permalink
[TASK] Adjust testing environment: local phpunit.xml, use forked repo…
Browse files Browse the repository at this point in the history
…sitories
  • Loading branch information
Claus Due committed May 20, 2013
1 parent f7eb067 commit 1b78517
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ env:

before_script:
- rm -rf *
- git clone git://github.com/typo3-ci/TYPO3-Travis-Integration.git build-environment
- git clone https://github.com/FluidTYPO3/TYPO3-Travis-Integration.git build-environment
- source build-environment/install-helper.sh
- git clone https://github.com/FluidTYPO3/TYPO3v4-Core.git --recurse-submodules build-environment/typo3 --depth 50
- git clone git://git.typo3.org/TYPO3v4/Distributions/Introduction.git build-environment/Introduction
- git clone https://github.com/FluidTYPO3/Introduction.git build-environment/Introduction
- mkdir fileadmin
- mkdir uploads
- mv build-environment/typo3/* ./
Expand All @@ -27,4 +27,4 @@ before_script:
- if [[ "$DB" == "mysql" ]]; then mysql -uroot typo3_test < build-environment/dbimport/phpunit.sql; fi

script:
- php $PWD/typo3/cli_dispatch.phpsh phpunit -c phpunit.xml
- php $PWD/typo3/cli_dispatch.phpsh phpunit -c $PWD/typo3conf/ext/vhs/Tests/phpunit.xml
20 changes: 20 additions & 0 deletions Tests/phpunit.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
strict="false"
verbose="false">

<testsuites>
<testsuite name="EXT:vhs">
<directory>typo3conf/ext/vhs/Tests</directory>
</testsuite>
</testsuites>
</phpunit>

0 comments on commit 1b78517

Please sign in to comment.