Remove wrong typing

This commit is contained in:
Ayaz Salikhov
2022-01-18 19:57:17 +03:00
parent 4049365492
commit e83abc9c50

View File

@@ -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"