store: rename Store to Stash

The name "stash" is a bit more distinguishable and more evocative of the
intended usage.
This commit is contained in:
Ran Benita
2021-07-18 13:51:09 +03:00
parent 940c6e2337
commit 5470d33e82
14 changed files with 115 additions and 115 deletions

View File

@@ -8,11 +8,11 @@ import pytest
from _pytest.config import Config
from _pytest.config import create_terminal_writer
from _pytest.config.argparsing import Parser
from _pytest.store import StoreKey
from _pytest.stash import StashKey
from _pytest.terminal import TerminalReporter
pastebinfile_key = StoreKey[IO[bytes]]()
pastebinfile_key = StashKey[IO[bytes]]()
def pytest_addoption(parser: Parser) -> None: