Skip to content

Commit

Permalink
adapt standard suite to pull refs and contracts from qcengine
Browse files Browse the repository at this point in the history
  • Loading branch information
loriab committed May 26, 2020
1 parent c83baec commit 74cd66a
Show file tree
Hide file tree
Showing 7 changed files with 716 additions and 1,277 deletions.
4 changes: 2 additions & 2 deletions devtools/scripts/miniconda.sh
Expand Up @@ -13,8 +13,8 @@ cd $HOME
MINICONDA=Miniconda3-latest-Linux-x86_64.sh
#fi
MINICONDA_HOME=$HOME/miniconda
MINICONDA_MD5=$(curl -s https://repo.continuum.io/miniconda/ | grep -A3 $MINICONDA | sed -n '4p' | sed -n 's/ *<td>\(.*\)<\/td> */\1/p')
wget -q https://repo.continuum.io/miniconda/$MINICONDA
MINICONDA_MD5=$(wget -qO- https://repo.anaconda.com/miniconda/ | grep -A3 $MINICONDA | sed -n '4p' | sed -n 's/ *<td>\(.*\)<\/td> */\1/p')
wget -q https://repo.anaconda.com/miniconda/$MINICONDA
if [[ $MINICONDA_MD5 != $(md5sum $MINICONDA | cut -d ' ' -f 1) ]]; then
echo "Miniconda MD5 mismatch"
exit 1
Expand Down
3 changes: 2 additions & 1 deletion psi4/CMakeLists.txt
Expand Up @@ -263,7 +263,8 @@ install(FILES ../tests/pytests/__init__.py
../tests/pytests/test_mp2d.py
../tests/pytests/test_testing.py
../tests/pytests/test_mints.py
../tests/pytests/standard_suite_ref.py
../tests/pytests/test_standard_suite.py
../tests/pytests/standard_suite_runner.py
DESTINATION ${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}${PYMOD_INSTALL_LIBDIR}/psi4/tests/)

# <<< install psi4 share/ & include/ >>>
Expand Down

0 comments on commit 74cd66a

Please sign in to comment.