mirror of
https://github.com/boostorg/website.git
synced 2026-02-20 15:22:08 +00:00
This requires the use of composer, which I've been avoiding to make running the website easier, but in this case it isn't needed as part of general operations, so it should be okay.
18 lines
471 B
Plaintext
18 lines
471 B
Plaintext
Most of the website is completely self-contained, but the tests use composer
|
|
to pull in some dependencies. You'll need to install composer from
|
|
https://getcomposer.org/
|
|
|
|
Then in this directory run:
|
|
|
|
composer install
|
|
|
|
And that should install all the dependencies into the `vendor` directory.
|
|
|
|
You should now be able to run individual tests directly:
|
|
|
|
php filters.phpt
|
|
|
|
Or run all the tests using something like:
|
|
|
|
./vendor/bin/tester -p php -c config/php.ini .
|