12 lines
143 B
Bash
12 lines
143 B
Bash
|
|
#! /usr/bin/env bash
|
||
|
|
#
|
||
|
|
# test stuff
|
||
|
|
|
||
|
|
set -ex
|
||
|
|
|
||
|
|
pushd tests
|
||
|
|
pytest --junitxml=results.xml -rA -v --durations=0 -o junit_logging=all
|
||
|
|
ls bin
|
||
|
|
popd
|
||
|
|
|