Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions lib/matplotlib/tests/test_backend_nbagg.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

import os
from pathlib import Path
import subprocess
import tempfile

import pytest

nbformat = pytest.importorskip('nbformat')
Expand Down Expand Up @@ -29,5 +29,6 @@ def _notebook_run(nb_file):


def test_ipynb():
nb, errors = _notebook_run('lib/matplotlib/tests/test_nbagg_01.ipynb')
nb, errors = _notebook_run(
str(Path(__file__).parent / 'test_nbagg_01.ipynb'))
assert errors == []