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