1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
- # Ultralytics ๐ AGPL-3.0 License - https://ultralytics.com/license
- import shutil
- from pathlib import Path
- from tests import TMP
- def pytest_addoption(parser):
- """Add custom command-line options to pytest."""
- parser.addoption("--slow", action="store_true", default=False, help="Run slow tests")
- def pytest_collection_modifyitems(config, items):
- """
- Modify the list of test items to exclude tests marked as slow if the --slow option is not specified.
- Args:
- config: The pytest configuration object that provides access to command-line options.
- items (list): The list of collected pytest item objects to be modified based on the presence of --slow option.
- """
- if not config.getoption("--slow"):
- # Remove the item entirely from the list of test items if it's marked as 'slow'
- items[:] = [item for item in items if "slow" not in item.keywords]
- def pytest_sessionstart(session):
- """
- Initialize session configurations for pytest.
- This function is automatically called by pytest after the 'Session' object has been created but before performing
- test collection. It sets the initial seeds and prepares the temporary directory for the test session.
- Args:
- session: The pytest session object.
- """
- from ultralytics.utils.torch_utils import init_seeds
- init_seeds()
- shutil.rmtree(TMP, ignore_errors=True) # Delete any existing tests/tmp directory
- TMP.mkdir(parents=True, exist_ok=True) # Create a new empty directory
- def pytest_terminal_summary(terminalreporter, exitstatus, config):
- """
- Cleanup operations after pytest session.
- This function is automatically called by pytest at the end of the entire test session. It removes certain files
- and directories used during testing.
- Args:
- terminalreporter: The terminal reporter object used for terminal output.
- exitstatus (int): The exit status of the test run.
- config: The pytest config object.
- """
- from ultralytics.utils import WEIGHTS_DIR
- # Remove files
- models = [path for x in {"*.onnx", "*.torchscript"} for path in WEIGHTS_DIR.rglob(x)]
- for file in ["decelera_portrait_min.mov", "bus.jpg", "yolo11n.onnx", "yolo11n.torchscript"] + models:
- Path(file).unlink(missing_ok=True)
- # Remove directories
- models = [path for x in {"*.mlpackage", "*_openvino_model"} for path in WEIGHTS_DIR.rglob(x)]
- for directory in [WEIGHTS_DIR / "path with spaces", TMP.parents[1] / ".pytest_cache", TMP] + models:
- shutil.rmtree(directory, ignore_errors=True)
|