api-testing/e2e/code-generator/python.sh

15 lines
219 B
Bash

#!/bin/bash
set -e
export sourcefile=$1
# exit if no source file is specified
if [ -z "$sourcefile" ]
then
echo "no source file is specified"
exit 1
fi
mv ${sourcefile} main.py
pip install requests
python main.py