Skip to content
Snippets Groups Projects
Commit 87f5eead authored by James Vasile's avatar James Vasile
Browse files

Let user specify pytest args

parent d18289a2
No related branches found
No related tags found
No related merge requests found
......@@ -4,5 +4,9 @@ set -e
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
cd ${SCRIPT_DIR}/../tests
pytest *.py
if [ $# -eq 0 ]; then
pytest *.py
else
pytest ""$@""
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment