9 lines
226 B
Bash
9 lines
226 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
set -o errexit -o nounset -o pipefail
|
||
|
|
eval "$@"
|
||
|
|
scriptDir="$(cd "$(dirname $(readlink -f "${BASH_SOURCE[0]}"))" && pwd)"
|
||
|
|
hostname="$(hostnamectl hostname)"
|
||
|
|
|
||
|
|
pytest --durations=0 $scriptDir -v --capture=no
|