From da29f6f949b2025fbbb7642ada34f46e76cd9b8d Mon Sep 17 00:00:00 2001 From: vermeul <swen@ethz.ch> Date: Mon, 9 Aug 2021 15:48:15 +0200 Subject: [PATCH] added InsecureRequestWarning to pyproject.toml --- pybis/src/python/pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 pybis/src/python/pyproject.toml diff --git a/pybis/src/python/pyproject.toml b/pybis/src/python/pyproject.toml new file mode 100644 index 00000000000..0c3615d75f8 --- /dev/null +++ b/pybis/src/python/pyproject.toml @@ -0,0 +1,4 @@ +[tool.pytest.ini_options] +filterwarnings = [ + "ignore::urllib3.exceptions.InsecureRequestWarning", +] \ No newline at end of file -- GitLab