From 1be899d0c5c610f41bc60fabfd4cfda861236128 Mon Sep 17 00:00:00 2001 From: q-posev Date: Tue, 3 May 2022 15:14:12 +0200 Subject: [PATCH] Add comments --- python/manual_install_pyqmckl.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) mode change 100644 => 100755 python/manual_install_pyqmckl.sh diff --git a/python/manual_install_pyqmckl.sh b/python/manual_install_pyqmckl.sh old mode 100644 new mode 100755 index 41a53ac..f3b48e6 --- a/python/manual_install_pyqmckl.sh +++ b/python/manual_install_pyqmckl.sh @@ -3,6 +3,7 @@ set -x set -e +# swig pre-processing ./build_pyqmckl.sh cd src/ @@ -15,9 +16,10 @@ cc -shared pyqmckl_wrap.o `pkg-config --libs qmckl` -o _pyqmckl.so cd .. -# test +# copy the produced files into the test dir cp src/_pyqmckl.so src/pyqmckl.py test/ +# run tests cd test/ python test_api.py cd ..