Commit 689c1f9e authored by Spiros Koulouzis's avatar Spiros Koulouzis

fix tests

parent 8e0380d2
......@@ -39,7 +39,7 @@ else
exit 1
fi
cd planner && venv/bin/python3 -m unittest discover
cd planner && python3 -m venv venv && venv/bin/python3 -m unittest discover
if [ $? -eq 0 ]
then
echo "------- Planner tests successful------"
......@@ -50,7 +50,7 @@ fi
cd ../
cd sure_tosca-client_python_stubs && venv/bin/python3 -m unittest discover
cd sure_tosca-client_python_stubs && python3 -m venv venv && venv/bin/python3 -m unittest discover
if [ $? -eq 0 ]
then
echo "------- sure_tosca-client_python_stubs tests successful------"
......@@ -60,7 +60,7 @@ else
fi
cd ../
cd semaphore-python-client-generated && venv/bin/python3 -m unittest discover
cd semaphore-python-client-generated && python3 -m venv venv && venv/bin/python3 -m unittest discover
if [ $? -eq 0 ]
then
echo "------- semaphore-python-client-generated tests successful ------"
......@@ -70,7 +70,7 @@ else
fi
cd ../
cd deployer && venv/bin/python3 -m unittest discover
cd deployer && python3 -m venv venv && venv/bin/python3 -m unittest discover
if [ $? -eq 0 ]
then
echo "------- deployer tests successful ------"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment