Skip to content

Commit

Permalink
pydeck: Update tests for interaction handling notebook (#4704)
Browse files Browse the repository at this point in the history
  • Loading branch information
ajduberstein committed Jun 20, 2020
1 parent 7e7b4bf commit d96e91f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
"\n",
"Often it's easier to use a visual application to draw a shape than define a geometry in code. Here we'll explore how pydeck can be used to select data and pass that selected data back to the Jupyter kernel for use in Pandas.\n",
"\n",
"Currently this notebook runs against live data, and there is a slight chance that the source data will be unavailable.\n",
"\n",
"## Contents\n",
"\n",
"- [Getting the data](#Getting-the-data)\n",
Expand Down Expand Up @@ -83,7 +85,7 @@
"source": [
"# Two way communication\n",
"\n",
"Click the above visualization and then execute the cell below to pass data from the application to Python"
"Click the above visualization and then execute the cell below to pass data from the application to Python."
]
},
{
Expand Down Expand Up @@ -112,7 +114,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.7.7"
"version": "3.7.6"
}
},
"nbformat": 4,
Expand Down
3 changes: 2 additions & 1 deletion bindings/pydeck/tests/notebooks/test_nbconvert.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
def test_nbconvert():
for fname in glob.glob(nb_glob):
# NOTE Massive data sets notebook takes too long to render, skipping for now
if '04' in fname or '06' in fname:
# NOTE skipping 03 (which contains live singapore taxi data) until I can provide a static version of that data
if '04' in fname or '06' in fname or '03' in fname:
continue
print(fname)
assert nbconvert(fname)

0 comments on commit d96e91f

Please sign in to comment.