Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewfeickert committed Dec 7, 2021
1 parent b9f0efc commit 2a098bc
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/test_notebooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,11 @@ def test_multibinpois(common_kwargs):


def test_pullplot(common_kwargs):
pm.execute_notebook('docs/examples/notebooks/pullplot.ipynb', **common_kwargs)
# Change directories to make users not have to worry about paths to follow example
cwd = os.getcwd()
os.chdir(os.path.join(cwd, "docs/examples/notebooks"))
pm.execute_notebook("pullplot.ipynb", **common_kwargs)
os.chdir(cwd)


def test_impactplot(common_kwargs):
Expand Down

0 comments on commit 2a098bc

Please sign in to comment.