mirror of
https://github.com/pyenv/pyenv.git
synced 2024-12-02 18:41:06 -05:00
ae2e7a3f0b
This allows to run a single test file more easily, although that could be done by calling bats directly.
9 lines
134 B
Bash
Executable file
9 lines
134 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
if [ -n "$RBENV_NATIVE_EXT" ]; then
|
|
src/configure
|
|
make -C src
|
|
fi
|
|
|
|
exec bats ${CI:+--tap} "${@:-test}"
|