From 764468b1536f6dc7a86c115b1ad1400ed5439c5e Mon Sep 17 00:00:00 2001 From: Bob Myhill Date: Sat, 25 May 2024 17:19:47 +0100 Subject: [PATCH] change order of installation for tester --- test.sh | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/test.sh b/test.sh index 4d4968b6..e2b93841 100755 --- a/test.sh +++ b/test.sh @@ -18,17 +18,16 @@ then fi $PYTHON --version -echo "" -echo "Dependency tree:" -$PYTHON -m pip install -q pipdeptree -$PYTHON -m pipdeptree -p burnman -d 1 2> /dev/null -echo "" - # Quietly install burnman in development mode echo "Installing BurnMan in development mode ..." $PYTHON -m pip install -q -e . echo "" +echo "Dependency tree:" +$PYTHON -m pip install -q pipdeptree . +$PYTHON -m pipdeptree -p burnman -d 1 2> /dev/null +echo "" + # Quietly install optional modules after burnman echo "Installing optional cvxpy, pycddlib, autograd and jupyter modules ..." $PYTHON -m pip install -q cvxpy pycddlib autograd jupyter