Really disable the tests here

This commit is contained in:
Jan Möbius
2015-12-15 10:32:16 +01:00
parent 3d77917eef
commit e7e18077c4

View File

@@ -90,14 +90,22 @@ echo "======================================================================"
echo -e "${NC}" echo -e "${NC}"
# Execute Python unittests if [ "$LANGUAGE" == "C++11" ]; then
cd Python-Unittests
# Execute Python unittests
cd Python-Unittests
rm -f openmesh.so
cp ../Build/python/openmesh.so .
python -m unittest discover -v
cd ..
else
echo "WARNING! Python unittests disabled for clang on Mac with c++98 !!"
fi
rm -f openmesh.so
cp ../Build/python/openmesh.so .
python -m unittest discover -v
cd ..
cd .. cd ..
@@ -167,12 +175,12 @@ echo -e "${NC}"
if [ "$LANGUAGE" == "C++11" ]; then if [ "$LANGUAGE" == "C++11" ]; then
# Execute Python unittests # Execute Python unittests
cd Python-Unittests cd Python-Unittests
rm -f openmesh.so rm -f openmesh.so
cp ../Build/python/openmesh.so . cp ../Build/python/openmesh.so .
python -m unittest discover -v python -m unittest discover -v
else else
echo "WARNING! Python unittests disabled for clang on Mac with c++98 !!" echo "WARNING! Python unittests disabled for clang on Mac with c++98 !!"
fi fi