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

Commit

Permalink
Fix build to ignore worker shell scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Philipp Frischmuth committed Oct 23, 2013
1 parent 8dc5627 commit d35d96b
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 16 deletions.
1 change: 0 additions & 1 deletion application/shell.worker.client.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
*
* @copyright Copyright (c) 2012, {@link http://aksw.org AKSW}
* @license http://opensource.org/licenses/gpl-license.php GNU General Public License (GPL)
* @codeCoverageIgnore
*/

/**
Expand Down
1 change: 0 additions & 1 deletion application/shell.worker.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
*
* @copyright Copyright (c) 2012, {@link http://aksw.org AKSW}
* @license http://opensource.org/licenses/gpl-license.php GNU General Public License (GPL)
* @codeCoverageIgnore
*/

/**
Expand Down
1 change: 1 addition & 0 deletions application/tests/integration/phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
<exclude>
<directory>../../../application/scripts</directory>
<directory>../../../application/tests</directory>
<directory>../../../application/shell.*</directory>
</exclude>
</whitelist>
</filter>
Expand Down
1 change: 1 addition & 0 deletions application/tests/unit/phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
<exclude>
<directory>../../../application/scripts</directory>
<directory>../../../application/tests</directory>
<directory>../../../application/shell.*</directory>
</exclude>
</whitelist>
</filter>
Expand Down
6 changes: 1 addition & 5 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -128,21 +128,17 @@
</target>

<target name="phpunit" depends="directories" description="Run unit tests with PHPUnit">
<exec dir="${basedir}/application/tests/unit/" executable="phpunit" failonerror="true">
<arg value="--configuration=${basedir}/build/phpunit.xml" />
</exec>
<exec dir="${basedir}/application/tests/unit/" executable="phpunit" failonerror="true" />
</target>

<target name="phpunit-integration-mysql" depends="phpunit" description="Run unit tests with PHPUnit">
<exec dir="${basedir}/application/tests/integration/" executable="phpunit" failonerror="true">
<arg value="--configuration=${basedir}/build/phpunit.xml" />
<env key="EF_STORE_ADAPTER" value="zenddb" />
</exec>
</target>

<target name="phpunit-integration-virtuoso" depends="phpunit" description="Run unit tests with PHPUnit">
<exec dir="${basedir}/application/tests/integration/" executable="phpunit" failonerror="true">
<arg value="--configuration=${basedir}/build/phpunit.xml" />
<env key="EF_STORE_ADAPTER" value="virtuoso" />
</exec>
</target>
Expand Down
9 changes: 0 additions & 9 deletions build/phpunit.xml

This file was deleted.

0 comments on commit d35d96b

Please sign in to comment.