14 lines
222 B
Bash
Executable file
14 lines
222 B
Bash
Executable file
#!/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 $?
|