We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6a0419 commit 1aa2f66Copy full SHA for 1aa2f66
plotly-package/plotly/tests/test_orca/test_to_image.py
@@ -29,7 +29,10 @@
29
tmp_dir = images_dir + 'tmp/'
30
# These formats are deterministic. PDF and svg don't seem to be
31
image_formats = ['eps']
32
-topo_df = pd.read_csv('plotly/tests/test_orca/resources/2011_us_ag_exports.csv')
+
33
+here = os.path.dirname(os.path.realpath(__file__))
34
+topo_df = pd.read_csv(
35
+ os.path.join(here, 'resources', '2011_us_ag_exports.csv'))
36
37
# Fixtures
38
# --------
0 commit comments