-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathconftest.py
35 lines (25 loc) · 896 Bytes
/
conftest.py
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
"""
Configures 'cost' marker for tests that cost money (i.e. OpenAI API credits)
to run.
Adapted from https://docs.pytest.org/en/latest/example/simple.html#control-skipping-of-tests-according-to-command-line-option
"""
import pytest
def pytest_addoption(parser):
parser.addoption(
"--runcost",
action="store_true",
default=False,
help="run tests that can incur API usage costs",
)
def pytest_configure(config):
config.addinivalue_line(
"markers", "cost: mark test as possibly costing money to run"
)
def pytest_collection_modifyitems(config, items):
if config.getoption("--runcost"):
# --runcost given in cli: do not skip cost tests
return
skip_cost = pytest.mark.skip(reason="need --runcost option to run")
for item in items:
if "cost" in item.keywords:
item.add_marker(skip_cost)