Update test paths

This commit is contained in:
Mike Jolley 2019-06-25 16:12:47 +01:00
parent 09ef1e74cf
commit a6db14ba38
3 changed files with 4 additions and 5 deletions

2
.gitattributes vendored
View File

@ -1,7 +1,7 @@
/.* export-ignore
/phpcs.xml export-ignore
/phpunit.* export-ignore
/tests export-ignore
/unit-tests export-ignore
/vendor export-ignore
/README.md export-ignore
/readme.txt export-ignore

1
.gitignore vendored
View File

@ -33,4 +33,3 @@ Thumbs.db
# composer
vendor/
classmap.php.bak

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
bootstrap="tests/Bootstrap.php"
bootstrap="unit-tests/Bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
@ -11,10 +11,10 @@
>
<testsuites>
<testsuite name="WooCommerce REST API Test Suite">
<directory suffix=".php">./tests/Tests</directory>
<directory suffix=".php">./unit-tests/Tests</directory>
</testsuite>
<testsuite name="v4">
<directory suffix=".php">./tests/Tests/Version4</directory>
<directory suffix=".php">./unit-tests/Tests/Version4</directory>
</testsuite>
</testsuites>
</phpunit>