mirror of
https://github.com/php-curl-class/php-curl-class.git
synced 2026-08-18 03:50:35 +00:00
87fc9b3796
* Run ci static analysis checks using scripts * Clean up * Move phpunit run to dedicated script * Use run.sh and remove ci.sh * Rename test scripts to be prefixed with "run_" * Move static analysis runs to test script * Clean up
10 lines
203 B
Bash
Executable File
10 lines
203 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
cd "${SCRIPT_DIR}"
|
|
|
|
# Let tests know we should skip slow tests.
|
|
export PHP_CURL_CLASS_SKIP_SLOW_TESTS="1"
|
|
|
|
source "run.sh"
|