You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
KasmVNC/run-specs

13 lines
152 B
Bash

#!/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