From 5bf22fc7e3c392c8bd44315ca2d06d7dca7d084e Mon Sep 17 00:00:00 2001 From: sotech117 Date: Thu, 31 Jul 2025 17:27:24 -0400 Subject: add code for analysis of data --- .../lib/python3.8/site-packages/plotly/conftest.py | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 venv/lib/python3.8/site-packages/plotly/conftest.py (limited to 'venv/lib/python3.8/site-packages/plotly/conftest.py') diff --git a/venv/lib/python3.8/site-packages/plotly/conftest.py b/venv/lib/python3.8/site-packages/plotly/conftest.py new file mode 100644 index 0000000..1e1361d --- /dev/null +++ b/venv/lib/python3.8/site-packages/plotly/conftest.py @@ -0,0 +1,24 @@ +import os + + +def pytest_ignore_collect(path): + # Ignored files, most of them are raising a chart studio error + ignored_paths = [ + "exploding_module.py", + "chunked_requests.py", + "v2.py", + "v1.py", + "presentation_objs.py", + "widgets.py", + "dashboard_objs.py", + "grid_objs.py", + "config.py", + "presentation_objs.py", + "session.py", + ] + if ( + os.path.basename(str(path)) in ignored_paths + or "plotly/plotly/plotly/__init__.py" in str(path) + or "plotly/api/utils.py" in str(path) + ): + return True -- cgit v1.2.3-70-g09d2