mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-30 20:20:53 +00:00
30 lines
487 B
Markdown
30 lines
487 B
Markdown
# Testing
|
|
|
|
### Run Tests
|
|
|
|
To run tests:
|
|
|
|
```bash
|
|
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:
|
|
|
|
```bash
|
|
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:
|
|
|
|
```bash
|
|
git clone https://github.com/php-curl-class/php-curl-class.git
|
|
cd php-curl-class/
|
|
./tests/test_all.sh
|
|
```
|