We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f18938 commit 6868f70Copy full SHA for 6868f70
packages/pytest-simcore/src/pytest_simcore/disk_usage_monitoring.py
@@ -7,7 +7,7 @@
7
_DEFAULT_THREADHOLD_MB = 512
8
9
10
-def pytest_addoption(parser):
+def pytest_addoption(parser: pytest.Parser):
11
simcore_group = parser.getgroup("simcore")
12
simcore_group.addoption(
13
"--disk-usage", action="store_true", help="Enable disk usage monitoring"
packages/pytest-simcore/src/pytest_simcore/file_extra.py
@@ -1,7 +1,6 @@
1
import logging
2
-from collections.abc import Callable
+from collections.abc import Callable, Iterable
3
from pathlib import Path
4
-from typing import Iterable
5
6
import pytest
from faker import Faker
0 commit comments