THRIFT-3505 Enhance Python TSSLSocket
This closes #760
diff --git a/lib/py/Makefile.am b/lib/py/Makefile.am
index c0db871..5183b9c 100755
--- a/lib/py/Makefile.am
+++ b/lib/py/Makefile.am
@@ -23,7 +23,8 @@
py3-build:
$(PYTHON3) setup.py build
py3-test: py3-build
- PYTHONPATH=build/lib $(PYTHON3) test/thrift_json.py
+ $(PYTHON3) test/thrift_json.py
+ $(PYTHON3) test/test_sslsocket.py
else
py3-build:
py3-test:
@@ -43,7 +44,8 @@
$(RM) -r build
check-local: all py3-test
- PYTHONPATH=$(shell ls build/lib* -dr | head -n1) $(PYTHON) test/thrift_json.py
+ $(PYTHON) test/thrift_json.py
+ $(PYTHON) test/test_sslsocket.py
EXTRA_DIST = \
CMakeLists.txt \