-
Charlotte Hausman authored
WS-195, WS-76: Notification System now working and sending emails on request submission and completion
Charlotte Hausman authoredWS-195, WS-76: Notification System now working and sending emails on request submission and completion
This project manages its dependencies using pip.
Learn more
run-tests.sh 391 B
#!/bin/bash
# Set failfast
# set -e
# set -o pipefail
echo "Happy Testing!"
pkgs=($(sed -n "s|-e ./||p" requirements.txt | tr "\n" " "))
# Install testing requirements
cd notification/test
pip install -r requirements.txt
cd ../..
for pkg in "${pkgs[@]}"
do
printf "\n --- Running: package-tester %s --- \n" $pkg
package-tester -v $pkg
done
echo "Package Tester has completed."