Skip to content

Instantly share code, notes, and snippets.

pytest -v mytest.py::TestClassName --html=report_localhost.html
@nichotined
nichotined / check_ssl
Created April 18, 2018 09:40
To get detailed ssl
curl --insecure -v https://www.google.com 2>&1 | awk 'BEGIN { cert=0 } /^\* SSL connection/ { cert=1 } /^\*/ { if (cert) print }'