mirror of
https://github.com/pyenv/pyenv.git
synced 2026-09-11 08:06:16 -04:00
This allows to run a single test file more easily, although that could be done by calling bats directly.
10 lines
134 B
Bash
Executable file
10 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}"
|