Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 810 Bytes

TESTING.md

File metadata and controls

33 lines (24 loc) · 810 Bytes

Testing

Run Tests Locally

To run tests:

git clone https://github.com/php-curl-class/php-curl-class.git
cd php-curl-class/
composer update
./tests/run.sh

To run select tests:

git clone https://github.com/php-curl-class/php-curl-class.git
cd php-curl-class/
composer update
./tests/run.sh --filter=keyword

To test all PHP versions in containers:

git clone https://github.com/php-curl-class/php-curl-class.git
cd php-curl-class/
./tests/test_all.sh

Continuous Integration Tests

Continuous integration runs tests/ci.sh on supported PHP versions and is configured with .github/workflows/ci.yml.