mirror of
https://github.com/microsoft/graphrag.git
synced 2025-06-26 23:19:58 +00:00
7 lines
215 B
Python
7 lines
215 B
Python
# 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"
|
|
)
|