10 lines
148 B
Bash
Executable file
10 lines
148 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -x
|
|
|
|
if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then
|
|
echo '$TRAVIS_PULL_REQUEST is false, skipping tests'
|
|
exit 0
|
|
else
|
|
make test
|
|
fi
|