13 lines
152 B
Bash
Executable File
13 lines
152 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
export PYTHONPATH=${PWD}/spec
|
|
|
|
RUN_CMD="pipenv run mamba"
|
|
|
|
if [[ -n "$1" ]]; then
|
|
$RUN_CMD "$1"
|
|
else
|
|
$RUN_CMD spec/*_spec.py
|
|
fi
|