#!/bin/bash # # Run fooder api tests # echo "Running fooder api tests" if [[ $# -eq 1 ]]; then python -m pytest fooder --disable-warnings -sv -k "${1}" else python -m pytest fooder --disable-warnings -sv fi exit $?