__init__.py000064400000012165150043456310006663 0ustar00# PYTHON_ARGCOMPLETE_OK """pytest: unit and functional testing with Python.""" from _pytest import __version__ from _pytest import version_tuple from _pytest._code import ExceptionInfo from _pytest.assertion import register_assert_rewrite from _pytest.cacheprovider import Cache from _pytest.capture import CaptureFixture from _pytest.config import cmdline from _pytest.config import Config from _pytest.config import console_main from _pytest.config import ExitCode from _pytest.config import hookimpl from _pytest.config import hookspec from _pytest.config import main from _pytest.config import PytestPluginManager from _pytest.config import UsageError from _pytest.config.argparsing import OptionGroup from _pytest.config.argparsing import Parser from _pytest.debugging import pytestPDB as __pytestPDB from _pytest.doctest import DoctestItem from _pytest.fixtures import fixture from _pytest.fixtures import FixtureLookupError from _pytest.fixtures import FixtureRequest from _pytest.fixtures import yield_fixture from _pytest.freeze_support import freeze_includes from _pytest.legacypath import TempdirFactory from _pytest.legacypath import Testdir from _pytest.logging import LogCaptureFixture from _pytest.main import Session from _pytest.mark import Mark from _pytest.mark import MARK_GEN as mark from _pytest.mark import MarkDecorator from _pytest.mark import MarkGenerator from _pytest.mark import param from _pytest.monkeypatch import MonkeyPatch from _pytest.nodes import Collector from _pytest.nodes import File from _pytest.nodes import Item from _pytest.outcomes import exit from _pytest.outcomes import fail from _pytest.outcomes import importorskip from _pytest.outcomes import skip from _pytest.outcomes import xfail from _pytest.pytester import HookRecorder from _pytest.pytester import LineMatcher from _pytest.pytester import Pytester from _pytest.pytester import RecordedHookCall from _pytest.pytester import RunResult from _pytest.python import Class from _pytest.python import Function from _pytest.python import Metafunc from _pytest.python import Module from _pytest.python import Package from _pytest.python_api import approx from _pytest.python_api import raises from _pytest.recwarn import deprecated_call from _pytest.recwarn import WarningsRecorder from _pytest.recwarn import warns from _pytest.reports import CollectReport from _pytest.reports import TestReport from _pytest.runner import CallInfo from _pytest.stash import Stash from _pytest.stash import StashKey from _pytest.terminal import TestShortLogReport from _pytest.tmpdir import TempPathFactory from _pytest.warning_types import PytestAssertRewriteWarning from _pytest.warning_types import PytestCacheWarning from _pytest.warning_types import PytestCollectionWarning from _pytest.warning_types import PytestConfigWarning from _pytest.warning_types import PytestDeprecationWarning from _pytest.warning_types import PytestExperimentalApiWarning from _pytest.warning_types import PytestRemovedIn8Warning from _pytest.warning_types import PytestReturnNotNoneWarning from _pytest.warning_types import PytestUnhandledCoroutineWarning from _pytest.warning_types import PytestUnhandledThreadExceptionWarning from _pytest.warning_types import PytestUnknownMarkWarning from _pytest.warning_types import PytestUnraisableExceptionWarning from _pytest.warning_types import PytestWarning set_trace = __pytestPDB.set_trace __all__ = [ "__version__", "approx", "Cache", "CallInfo", "CaptureFixture", "Class", "cmdline", "Collector", "CollectReport", "Config", "console_main", "deprecated_call", "DoctestItem", "exit", "ExceptionInfo", "ExitCode", "fail", "File", "fixture", "FixtureLookupError", "FixtureRequest", "freeze_includes", "Function", "hookimpl", "HookRecorder", "hookspec", "importorskip", "Item", "LineMatcher", "LogCaptureFixture", "main", "mark", "Mark", "MarkDecorator", "MarkGenerator", "Metafunc", "Module", "MonkeyPatch", "OptionGroup", "Package", "param", "Parser", "PytestAssertRewriteWarning", "PytestCacheWarning", "PytestCollectionWarning", "PytestConfigWarning", "PytestDeprecationWarning", "PytestExperimentalApiWarning", "PytestRemovedIn8Warning", "PytestReturnNotNoneWarning", "Pytester", "PytestPluginManager", "PytestUnhandledCoroutineWarning", "PytestUnhandledThreadExceptionWarning", "PytestUnknownMarkWarning", "PytestUnraisableExceptionWarning", "PytestWarning", "raises", "RecordedHookCall", "register_assert_rewrite", "RunResult", "Session", "set_trace", "skip", "Stash", "StashKey", "version_tuple", "TempdirFactory", "TempPathFactory", "Testdir", "TestReport", "TestShortLogReport", "UsageError", "WarningsRecorder", "warns", "xfail", "yield_fixture", ] def __getattr__(name: str) -> object: if name == "Instance": # The import emits a deprecation warning. from _pytest.python import Instance return Instance raise AttributeError(f"module {__name__} has no attribute {name}") __main__.py000064400000000164150043456310006640 0ustar00"""The pytest entry point.""" import pytest if __name__ == "__main__": raise SystemExit(pytest.console_main()) __pycache__/__init__.cpython-311.pyc000064400000012761150043456310013225 0ustar00 bgudZddlmZddlmZddlmZddlmZddlm Z ddl m Z ddl m Z dd l mZdd l mZdd l mZdd l mZdd l mZddl mZddl mZddl mZddlmZddlmZddlmZddlmZddlmZddlm Z ddlm!Z!ddlm"Z"ddl#m$Z$ddl%m&Z&ddl%m'Z'ddl(m)Z)ddl*m+Z+ddl,m-Z-ddl,m.Z/dd l,m0Z0dd!l,m1Z1dd"l,m2Z2dd#l3m4Z4dd$l5m6Z6dd%l5m7Z7dd&l5m8Z8dd'l9m:Z:dd(l9m;Z;dd)l9mZ>dd,l?m@Z@dd-l?mAZAdd.l?mBZBdd/l?mCZCdd0l?mDZDdd1lEmFZFdd2lEmGZGdd3lEmHZHdd4lEmIZIdd5lEmJZJdd6lKmLZLdd7lKmMZMdd8lNmOZOdd9lNmPZPdd:lNmQZQdd;lRmSZSddlWmXZXdd?lWmYZYdd@lZm[Z[ddAl\m]Z]ddBl^m_Z_ddCl^m`Z`ddDl^maZaddEl^mbZbddFl^mcZcddGl^mdZdddHl^meZeddIl^mfZfddJl^mgZgddKl^mhZhddLl^miZiddMl^mjZjddNl^mkZkejlZlgdOZmdPendQeofdRZpdSS)Tz0pytest: unit and functional testing with Python.) __version__) version_tuple) ExceptionInfo)register_assert_rewrite)Cache)CaptureFixture)cmdline)Config) console_main)ExitCode)hookimpl)hookspec)main)PytestPluginManager) UsageError) OptionGroup)Parser) pytestPDB) DoctestItem)fixture)FixtureLookupError)FixtureRequest) yield_fixture)freeze_includes)TempdirFactory)Testdir)LogCaptureFixture)Session)Mark)MARK_GEN) MarkDecorator) MarkGenerator)param) MonkeyPatch) Collector)File)Item)exit)fail) importorskip)skip)xfail) HookRecorder) LineMatcher)Pytester)RecordedHookCall) RunResult)Class)Function)Metafunc)Module)Package)approx)raises)deprecated_call)WarningsRecorder)warns) CollectReport) TestReport)CallInfo)Stash)StashKey)TestShortLogReport)TempPathFactory)PytestAssertRewriteWarning)PytestCacheWarning)PytestCollectionWarning)PytestConfigWarning)PytestDeprecationWarning)PytestExperimentalApiWarning)PytestRemovedIn8Warning)PytestReturnNotNoneWarning)PytestUnhandledCoroutineWarning)%PytestUnhandledThreadExceptionWarning)PytestUnknownMarkWarning) PytestUnraisableExceptionWarning) PytestWarning)Mrr7rr>rr2r r%r<r r r9rr(rr r)r&rrrrr3r r-rr*r'r.rrmarkrr!r"r4r5r$rr6r#rrCrDrErFrGrHrIrJr/rrKrLrMrNrOr8r0rr1r set_tracer+r?r@rrrBrr=rArr:r;r,rnamereturncR|dkrddlm}|Stdtd|)NInstancer)rUzmodule z has no attribute )_pytest.pythonrUAttributeError__name__)rRrUs `/builddir/build/BUILD/cloudlinux-venv-1.0.7/venv/lib/python3.11/site-packages/pytest/__init__.py __getattr__rZsC z++++++ E8EEtEE F FFN)q__doc___pytestrr _pytest._coder_pytest.assertionr_pytest.cacheproviderr_pytest.capturer_pytest.configr r r r r rrrr_pytest.config.argparsingrr_pytest.debuggingr __pytestPDB_pytest.doctestr_pytest.fixturesrrrr_pytest.freeze_supportr_pytest.legacypathrr_pytest.loggingr _pytest.mainr _pytest.markrr rPr!r"r#_pytest.monkeypatchr$ _pytest.nodesr%r&r'_pytest.outcomesr(r)r*r+r,_pytest.pytesterr-r.r/r0r1rVr2r3r4r5r6_pytest.python_apir7r8_pytest.recwarnr9r:r;_pytest.reportsr<r=_pytest.runnerr> _pytest.stashr?r@_pytest.terminalrA_pytest.tmpdirrB_pytest.warning_typesrCrDrErFrGrHrIrJrKrLrMrNrOrQ__all__strobjectrZr[rYr}s66!!!!!!''''''555555''''''******""""""!!!!!!''''''##################......%%%%%%111111,,,,,,666666''''''$$$$$$//////++++++******222222------&&&&&&------ ))))))&&&&&&&&&&&&++++++######!!!!!!!!!!!!))))))!!!!!!""""""))))))((((((%%%%%%------&&&&&& ############!!!!!!""""""%%%%%%%%%%%%++++++,,,,,,!!!!!!))))))&&&&&&######""""""//////******<<<<<<444444999999555555::::::>>>>>>999999<<<<<<AAAAAAGGGGGG::::::BBBBBB//////  ! N N N bGcGfGGGGGGr[__pycache__/__main__.cpython-311.pyc000064400000000643150043456310013202 0ustar00 bgtNdZddlZedkreejdS)zThe pytest entry point.N__main__)__doc__pytest__name__ SystemExit console_main`/builddir/build/BUILD/cloudlinux-venv-1.0.7/venv/lib/python3.11/site-packages/pytest/__main__.pyr sC  z *(V(** + ++r py.typed000064400000000000150043456310006232 0ustar00