mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
8 lines
110 B
Bash
Executable file
8 lines
110 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
if [ -n "$RBENV_NATIVE_EXT" ]; then
|
|
make -C src
|
|
fi
|
|
|
|
exec bats ${CI:+--tap} test
|