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