mirror of
https://github.com/pyenv/pyenv.git
synced 2026-09-10 07:36:16 -04:00
10 lines
237 B
Bash
Executable file
10 lines
237 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
if [ -n "$PYENV_NATIVE_EXT" ]; then
|
|
src/configure
|
|
make -C src
|
|
fi
|
|
|
|
exec bats ${CI:+-F "$PWD/test/libexec/bats-format-tap-suite"} ${BATS_TEST_FILTER:+--filter "${BATS_TEST_FILTER}"} test/${BATS_FILE_FILTER}
|