mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-12 04:22:58 +00:00
Remove wrong typing
This commit is contained in:
@@ -6,8 +6,6 @@ import logging
|
|||||||
import pytest
|
import pytest
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
from conftest import TrackedContainer
|
|
||||||
|
|
||||||
LOGGER = logging.getLogger(__name__)
|
LOGGER = logging.getLogger(__name__)
|
||||||
THIS_DIR = Path(__file__).parent.resolve()
|
THIS_DIR = Path(__file__).parent.resolve()
|
||||||
|
|
||||||
@@ -21,9 +19,7 @@ THIS_DIR = Path(__file__).parent.resolve()
|
|||||||
("notebook_svg", "html"),
|
("notebook_svg", "html"),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
def test_nbconvert(
|
def test_nbconvert(container, test_file: str, output_format: str) -> None:
|
||||||
container: TrackedContainer, test_file: str, output_format: str
|
|
||||||
) -> None:
|
|
||||||
"""Check if nbconvert is able to convert a notebook file"""
|
"""Check if nbconvert is able to convert a notebook file"""
|
||||||
host_data_dir = THIS_DIR / "data"
|
host_data_dir = THIS_DIR / "data"
|
||||||
cont_data_dir = "/home/jovyan/data"
|
cont_data_dir = "/home/jovyan/data"
|
||||||
|
Reference in New Issue
Block a user