This commit is contained in:
Adam J. Stewart 2021-06-22 16:21:14 +00:00
Родитель c3277a0f3f
Коммит 9ee482e88f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: C66C0675661156FC
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -1,6 +1,7 @@
import os
from pathlib import Path
import shutil
import sys
from typing import Generator
from _pytest.fixtures import SubRequest
@ -26,6 +27,8 @@ def download_url(url: str, root: str, *args: str) -> None:
shutil.copy(url, root)
# TODO: figure out how to install unrar on Windows in GitHub Actions
@pytest.mark.skipif(sys.platform == "win32", reason="requires unrar executable")
class TestVHR10:
@pytest.fixture(params=["positive", "negative"])
def dataset(