9 lines
110 B
Bash
Executable File
9 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
|