Skip to content
Open
Show file tree
Hide file tree
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
5 changes: 4 additions & 1 deletion tests/functional/shell/test_script_subprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@
from typing import cast

import pytest
from pytest_subtests import SubTests
try:
from pytest import Subtests as SubTests
except ImportError:
from pytest_subtests import SubTests

from pytestshellutils.customtypes import EnvironDict
from pytestshellutils.exceptions import FactoryTimeout
Expand Down
5 changes: 4 additions & 1 deletion tests/unit/utils/processes/test_processresult.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@
import textwrap

import pytest
from pytest_subtests import SubTests
try:
from pytest import Subtests as SubTests
except ImportError:
from pytest_subtests import SubTests

from pytestshellutils.utils.processes import ProcessResult

Expand Down