Spaces:
Runtime error
Runtime error
File size: 215 Bytes
e331e72 |
1 2 3 4 5 6 7 |
# Copyright (c) 2024 Microsoft Corporation.
# Licensed under the MIT License
def pytest_addoption(parser):
parser.addoption(
"--run_slow", action="store_true", default=False, help="run slow tests"
)
|