This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"label":"Coverage","message":"47%","schemaVersion":1,"color":"red"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from typing import List, Dict | |
from _pytest.terminal import TerminalReporter | |
from _pytest.config import Config | |
from _pytest.nodes import Item | |
from _pytest.runner import CallInfo | |
# holds the test results grouped by xray marker | |
# key is the xray marker string | |
# value is a list of all test outcomes, True for PASSED, False for FAILED |