Skip to content

Commit cfc1e58

Browse files
author
vishalkakadiya
committed
Fixing travis error
1 parent 94838b8 commit cfc1e58

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

bin/run-wp-unit-tests.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ fi
1515
echo "Running with the following versions:"
1616
echo "php -v"
1717
php -v
18-
echo "./vendor/bin/phpunit --version"
19-
./vendor/bin/phpunit --version
18+
echo "./bin/phpunit --version"
19+
./bin/phpunit --version
2020

2121
# Run PHPUnit tests
2222
if [[ ! -z "$WP_VERSION" ]] ; then
23-
./vendor/bin/phpunit --coverage-clover=clover.xml || exit 1;
23+
./bin/phpunit --coverage-clover=clover.xml || exit 1;
2424
fi
2525

2626
# Run phpcs
2727
if [[ "$WP_TRAVISCI" == "phpcs" ]] ; then
28-
./vendor/bin/phpcs
28+
./bin/phpcs
2929
fi

0 commit comments

Comments
 (0)