From 029c38ef8a0331e37c99bcf4586d691b777c1977 Mon Sep 17 00:00:00 2001 From: c-w-m Date: Mon, 23 Jan 2023 14:47:33 -0700 Subject: [PATCH] alernative approaches to setting CA_BUNDLE --- tests/.env.test.example | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/tests/.env.test.example b/tests/.env.test.example index 1a4a9ed..b3560f8 100644 --- a/tests/.env.test.example +++ b/tests/.env.test.example @@ -3,6 +3,14 @@ CA_BUNDLE=C:\your\path\and\certificates.pem -# alternatively you can set this value as an environment variable +# ---------------------------------------------------------------------------- +# two alternatives to having a .env file +# +# ( 1.) you can set this value as an environment variable # $ set CA_BUNDLE=C:\your\path\and\certificates.pem # for win OS # $ export CA_BUNDLE=C:\your\path\and\certificates.pem # for nix OS +# +# ( 2.) or you can pass the CA_BUNDLE with the `--verify` argument +# example +# > pipreqs --verify C:\your\path\and\certificates.pem . +# ----------------------------------------------------------------------------