From 2383656b3e0298f4312ee370ae4bc5e9bb2b006b Mon Sep 17 00:00:00 2001 From: scribu Date: Sat, 29 Dec 2012 17:41:13 +0200 Subject: [PATCH] move phpunit.xml to the root dir --- .gitignore | 1 + README.md | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 8b2103e7..8e2a6743 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /dist /vendor /composer.lock +/phpunit.xml diff --git a/README.md b/README.md index 10c52eee..2f9ec0ff 100644 --- a/README.md +++ b/README.md @@ -41,9 +41,9 @@ Running the following as root in MySQL should do the trick: Finally, to run the tests: - vendor/bin/phpunit -c tests/phpunit.xml + vendor/bin/phpunit Most tests install WordPress from scratch. Since this is pretty slow, you can use arguments to `phpunit` to only run the test that you're interested in: - vendor/bin/phpunit -c tests/phpunit.xml --filter test_function_you_want_to_run tests + vendor/bin/phpunit --filter test_function_you_want_to_run