From 7349dbb477d9a2433650266b605a66cc0df9d243 Mon Sep 17 00:00:00 2001 From: "R.K.Garcia" <rayg@ssec.wisc.edu> Date: Tue, 22 Jun 2021 00:51:03 +0000 Subject: [PATCH] add ssl test for pyproj --- Docker/test-ssl-c7r/ssl-test.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Docker/test-ssl-c7r/ssl-test.sh b/Docker/test-ssl-c7r/ssl-test.sh index d1b03258..0711864c 100755 --- a/Docker/test-ssl-c7r/ssl-test.sh +++ b/Docker/test-ssl-c7r/ssl-test.sh @@ -11,4 +11,10 @@ elif test ! -e /usr/lib64/libcrypt.so.1; then fi ./python3 -c 'from urllib import request as req; txt = req.urlopen("https://www.ssec.wisc.edu").read(); print(len(txt) > 0)' +./python3 - <<EOF +try: + import pyproj +except ModuleNotFoundError: + pass +EOF -- GitLab