* Test Suite on GitHub Actions * Add linting checks * Update badges. Drop unused codecov, pending GitHub action support,
15 lines
170 B
Bash
Executable File
15 lines
170 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
export PREFIX=""
|
|
if [ -d 'venv' ] ; then
|
|
export PREFIX="venv/bin/"
|
|
fi
|
|
|
|
set -x
|
|
|
|
if [ -z $GITHUB_ACTIONS ]; then
|
|
scripts/check
|
|
fi
|
|
|
|
${PREFIX}pytest $@
|