Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python2-pytest4-4.6.9-bp153.1.19 RPM for noarch

From OpenSuSE Leap 15.3 for noarch

Name: python2-pytest4 Distribution: SUSE Linux Enterprise 15 SP3
Version: 4.6.9 Vendor: openSUSE
Release: bp153.1.19 Build date: Sat Mar 6 18:28:46 2021
Group: Development/Languages/Python Build host: lamb02
Size: 2441580 Source RPM: python-pytest4-4.6.9-bp153.1.19.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/pytest-dev/pytest
Summary: Python testing tool with autodiscovery and detailed asserts
pytest is a cross-project Python testing tool. It provides:

* auto-discovery of test modules and functions,
* detailed info on failing assert statements (no need to remember
  self.assert* names),
* modular fixtures for managing small or parametrized long-lived test resources.
* multi-paradigm support: you can use py.test to run test suites based on
  unittest (or trial), nose,
* single-source compatibility to Python2.4 all the way up to Python3.3,
  PyPy-1.9 and Jython-2.5.1, and
* many external plugins.

Provides

Requires

License

MIT

Changelog

* Tue Jan 14 2020 Tomáš Chvátal <tchvatal@suse.com>
  - Fix typo importlib_metadata -> importlib-metadata
* Mon Jan 06 2020 Tomáš Chvátal <tchvatal@suse.com>
  - Update to 4.6.9:
    * various minor bugfixes for 4.x series to keep it working with
      latest python modules
* Mon Oct 14 2019 Ondřej Súkup <mimi.vx@gmail.com>
  - update to 4.6.6
  - drop importlib-py38.patch and attrs.patch
    * Fixed using multiple short options together in the command-line
    * Fix "lexer" being used when uploading to bpaste.net from --pastebin to text
    * python version checks (detected by flake8-2020) in case python4 becomes thing
    * Fix warnings about deprecated cmp attribute in attrs>=19.2
    * Replace importlib_metadata backport with importlib.metadata on Py3.8
* Thu Oct 10 2019 Ondřej Súkup <mimi.vx@gmail.com>
  - add attrs.patch based on gh#5902 Fix warnings with attrs 19.2
      and fix object assertions
* Wed Sep 25 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Update more the py38 compat patchset by taking more commits from
    upstream:
    * importlib-py38.patch
* Wed Sep 11 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Add patch to not pull importlib_metadata on python 3.8:
    * importlib-py38.patch
* Mon Aug 19 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Update to 4.6.5:
    * #4344: Fix RuntimeError/StopIteration when trying to collect package with "init.py" only.
    * #5478: Fix encode error when using unicode strings in exceptions with pytest.raises.
    * #5524: Fix issue where tmp_path and tmpdir would not remove directories containing files marked as read-only,
      which could lead to pytest crashing when executed a second time with the --basetemp option.
    * #5547: --step-wise now handles xfail(strict=True) markers properly.
    * #5650: Improved output when parsing an ini configuration file fails.
* Fri Jul 19 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Add setuptools requires as we still use entrypoints
* Tue Jul 09 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Fix the multubild flavor name
* Tue Jul 02 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Update to 4.6.4:
    * #5404: Emit a warning when attempting to unwrap a broken object raises an exception, for easier debugging (#5080).
    * #5444: Fix --stepwise mode when the first file passed on the command-line fails to collect.
    * #5482: Fix bug introduced in 4.6.0 causing collection errors when passing more than 2 positional arguments to pytest.mark.parametrize.
    * #5505: Fix crash when discovery fails while using -p no:terminal.
* Wed Jun 12 2019 Ondřej Súkup <mimi.vx@gmail.com>
  - update to 4.6.3
    * -q has again an impact on the style of the collected items (--collect-only)
      when --log-cli-level is used.
    * Fix regressions of #5063 for importlib_metadata.PathDistribution which
      have their files attribute being None.
    * Fix regression where the obj attribute of TestCase items was no longer
      bound to methods.
* Fri Jun 07 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Fixup the requirements to match up setup.py
* Tue Jun 04 2019 Ondřej Súkup <mimi.vx@gmail.com>
  - update to 4.6.2
    * Revert unrolling of all() to fix NameError on nested comprehensions.
    * Revert unrolling of all() to fix incorrect handling of generators with if.
    * Revert unrolling of all() to fix incorrect assertion when using all()
      in an expression.
* Mon Jun 03 2019 Ondřej Súkup <mimi.vx@gmail.com>
  - update to 4.6.1
  - The 4.6.X series will be the last series to support Python 2 and Python 3.4.
    * Fix pytest.mark.parametrize when the argvalues is an iterator.
    * Fix assertion rewriting of all() calls to deal with non-generators.
    * Added the junit_log_passing_tests ini value which can be used to enable
    or disable logging of passing test output in the Junit XML file.
    * pytester’s testdir.spawn uses tmpdir as HOME/USERPROFILE directory.
    * Unroll calls to all to full for-loops with assertion rewriting for better
      failure messages, especially when using Generator Expressions.
    * Switch from pkg_resources to importlib-metadata for entrypoint detection
      for improved performance and import time.
    * The output for ini options in --help has been improved.
    * pytest.importorskip includes the ImportError now in the default reason.
    * Captured logs that are output for each failing test are formatted
    using the ColoredLevelFormatter.
    * Improved formatting of multiline log messages in Python 3.
    * The debugging plugin imports the wrapped Pdb class (--pdbcls) on-demand now.
    * The pytest_enter_pdb hook gets called with post-mortem (--pdb).
    * Fix issue where fixtures dependent on other parametrized fixtures would
    be erroneously parametrized.
    * Handle internal error due to a lone surrogate unicode character not being
      representable in Jython.
    * Ensure that sys.stdout.mode does not include 'b' as it is a text stream.
    * Pytest’s internal python plugin can be disabled using -p no:python again.
    * Fix issue with disable_test_id_escaping_and_forfeit_all_rights_to_community_support
      option not working when using a list of test IDs in parametrized tests.
    * Show the test module being collected when emitting PytestCollectionWarning messages
    for test classes with __init__ and __new__ methods to make it easier to pin down the problem.
    * Fix regression in 4.5.0 with --lf not re-running all tests with known failures
      from non-selected tests.
* Thu May 23 2019 Ondřej Súkup <mimi.vx@gmail.com>
  - update to 4.5.0
  - drop 4dbb56146a1fe0bf70df801582f0abde4ef4e64c.patch - upstream merged
    * A warning is now emitted when unknown marks are used as a decorator
    * Show XFail reason as part of JUnitXML message field
    * Messages from crash reports are displayed within test summaries now
    * New flag --strict-markers that triggers an error when unknown markers
    * Assertion failure messages for sequences and dicts contain the number
    of different items now.
    * Improve reporting with --lf and --ff
    * The --cache-show option/action accepts an optional glob to show only
    matching cache entries.
    * Standard input (stdin) can be given to pytester’s Testdir.run() and Testdir.popen().
    * he -r option learnt about A to display all reports (including passed ones)
    in the short test summary.
    * The short test summary is displayed after passes with output (-rP).
    * The --last-failed (--lf) option got smarter and will now skip entire files
    if all tests of that test file have passed in previous runs, greatly speeding up collection.
    * Introduce new specific warning PytestWarning subclasses to make it easier
    to filter warnings based on the class, rather than on the message
    * New record_testsuite_property session-scoped fixture allows users to log
    <property> tags at the testsuite level with the junitxml plugin.
    * --fixtures now also shows fixture scope for scopes other than "function".
    * Deselected items from plugins using pytest_collect_modifyitems as a hookwrapper
    are correctly reported now.
    * With usage errors exitstatus is set to EXIT_USAGEERROR in the pytest_sessionfinish
    hook now as expected.
    * outcome.exit is not used with EOF in the pdb wrapper anymore, but only with quit.
    * logging.raiseExceptions is not set to False anymore.
    * pytest now depends on wcwidth to properly track unicode character sizes for more
    precise terminal output.
    * pytester’s Testdir.popen() uses stdout and stderr via keyword arguments with
    defaults now (subprocess.PIPE).
    * The code for the short test summary in the terminal was moved to the terminal plugin.
    * Improved validation of kwargs for various methods in the pytester plugin.
    * record_property now emits a PytestWarning when used with junit_family=xunit2:
    the fixture generates property tags as children of testcase, which is not permitted
      according to the most recent schema.
    * Fix crash caused by error in __repr__ function with both showlocals
    and verbose output enabled.
    * Eliminate core dependency on ‘terminal’ plugin.
    * Doc: pytest_ignore_collect, pytest_collect_directory, pytest_collect_file
      and pytest_pycollect_makemodule hooks’s ‘path’ parameter documented type is now py.path.local
    * Improve help for --runxfail flag.
* Mon May 06 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Update to 4.4.1:
    * #5031: Environment variables are properly restored when using pytester's testdir fixture.
    * #5039: Fix regression with --pdbcls, which stopped working with local modules in 4.0.0.
    * #5092: Produce a warning when unknown keywords are passed to pytest.param(...).
    * #5098: Invalidate import caches with monkeypatch.syspath_prepend, which is required with namespace packages being used.
* Thu Apr 04 2019 Ondřej Súkup <mimi.vx@gmail.com>
  - add 4dbb56146a1fe0bf70df801582f0abde4ef4e64c.patch - fix tests on 32bit
* Mon Apr 01 2019 Ondřej Súkup <mimi.vx@gmail.com>
  - update to 4.4.0
  - drop doc subpackage
    * async test functions are skipped and a warning is emitted when
    a suitable async plugin is not installed
    * Include new disable_test_id_escaping_and_forfeit_all_rights_to_community_support
    option to disable ascii-escaping in parametrized values.
    * the -p option can now be used to early-load plugins also by entry-point name
    * The --pdbcls option handles classes via module attributes now
    * The testpaths configuration option is now displayed next to the rootdir
    and inifile ines in the pytest header if the option is in effec
    * Doctests can be skipped now dynamically using pytest.skip()
    * Handle -p plug after -p no:plug.
    * Namespace packages are handled better with monkeypatch.syspath_prepend
    and testdir.syspathinsert
* Mon Mar 25 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Update to 4.3.1:
    * #4810: Logging messages inside pytest_runtest_logreport() are now properly captured and displayed.
    * #4861: Improve validation of contents written to captured output so it behaves the same as when capture is disabled.
    * #4898: Fix AttributeError: FixtureRequest has no 'confg' attribute bug in testdir.copy_example.
    * #4768: Avoid pkg_resources import at the top-level.
* Tue Feb 19 2019 Ondřej Súkup <mimi.vx@gmail.com>
  - Update to 4.3.0
    * pytest.warns() now emits a warning when it receives unknown keyword
      arguments.
    * Usage errors from argparse are mapped to pytest's UsageError.
    * Add the --ignore-glob parameter to exclude test-modules with Unix
      shell-style wildcard
    * With the help of new set_log_path() method there is a way to set log_file
      paths from hooks.
    * For detailed changelog please consult upstream list:
      + https://docs.pytest.org/en/latest/changelog.html#changelog
* Thu Jan 31 2019 Tomáš Chvátal <tchvatal@suse.com>
  - Update to 4.2.0:
    * This is 4.x series release and as such removes lot of
      deprecated features
    * 5.0 series will support only python3 of 3.5 version and newer
    * For detailed changelog please consult upstream list:
      + https://docs.pytest.org/en/latest/changelog.html#changelog
  - Drop upstream merged fix_test_raises_exception_looks_iterable.patch
* Fri Jan 04 2019 mcepl@suse.com
  - Switch the package to multibuild.
  - Add fix_test_raises_exception_looks_iterable.patch from
    gh#pytest-dev/pytest#4525

Files

/etc/alternatives/py.test
/etc/alternatives/pytest
/usr/bin/py.test
/usr/bin/py.test-2.7
/usr/bin/py.test2
/usr/bin/pytest
/usr/bin/pytest-2.7
/usr/lib/python2.7/site-packages/_pytest
/usr/lib/python2.7/site-packages/_pytest/__init__.py
/usr/lib/python2.7/site-packages/_pytest/__init__.pyc
/usr/lib/python2.7/site-packages/_pytest/__init__.pyo
/usr/lib/python2.7/site-packages/_pytest/_argcomplete.py
/usr/lib/python2.7/site-packages/_pytest/_argcomplete.pyc
/usr/lib/python2.7/site-packages/_pytest/_argcomplete.pyo
/usr/lib/python2.7/site-packages/_pytest/_code
/usr/lib/python2.7/site-packages/_pytest/_code/__init__.py
/usr/lib/python2.7/site-packages/_pytest/_code/__init__.pyc
/usr/lib/python2.7/site-packages/_pytest/_code/__init__.pyo
/usr/lib/python2.7/site-packages/_pytest/_code/_py2traceback.py
/usr/lib/python2.7/site-packages/_pytest/_code/_py2traceback.pyc
/usr/lib/python2.7/site-packages/_pytest/_code/_py2traceback.pyo
/usr/lib/python2.7/site-packages/_pytest/_code/code.py
/usr/lib/python2.7/site-packages/_pytest/_code/code.pyc
/usr/lib/python2.7/site-packages/_pytest/_code/code.pyo
/usr/lib/python2.7/site-packages/_pytest/_code/source.py
/usr/lib/python2.7/site-packages/_pytest/_code/source.pyc
/usr/lib/python2.7/site-packages/_pytest/_code/source.pyo
/usr/lib/python2.7/site-packages/_pytest/_io
/usr/lib/python2.7/site-packages/_pytest/_io/__init__.py
/usr/lib/python2.7/site-packages/_pytest/_io/__init__.pyc
/usr/lib/python2.7/site-packages/_pytest/_io/__init__.pyo
/usr/lib/python2.7/site-packages/_pytest/_io/saferepr.py
/usr/lib/python2.7/site-packages/_pytest/_io/saferepr.pyc
/usr/lib/python2.7/site-packages/_pytest/_io/saferepr.pyo
/usr/lib/python2.7/site-packages/_pytest/_version.py
/usr/lib/python2.7/site-packages/_pytest/_version.pyc
/usr/lib/python2.7/site-packages/_pytest/_version.pyo
/usr/lib/python2.7/site-packages/_pytest/assertion
/usr/lib/python2.7/site-packages/_pytest/assertion/__init__.py
/usr/lib/python2.7/site-packages/_pytest/assertion/__init__.pyc
/usr/lib/python2.7/site-packages/_pytest/assertion/__init__.pyo
/usr/lib/python2.7/site-packages/_pytest/assertion/rewrite.py
/usr/lib/python2.7/site-packages/_pytest/assertion/rewrite.pyc
/usr/lib/python2.7/site-packages/_pytest/assertion/rewrite.pyo
/usr/lib/python2.7/site-packages/_pytest/assertion/truncate.py
/usr/lib/python2.7/site-packages/_pytest/assertion/truncate.pyc
/usr/lib/python2.7/site-packages/_pytest/assertion/truncate.pyo
/usr/lib/python2.7/site-packages/_pytest/assertion/util.py
/usr/lib/python2.7/site-packages/_pytest/assertion/util.pyc
/usr/lib/python2.7/site-packages/_pytest/assertion/util.pyo
/usr/lib/python2.7/site-packages/_pytest/cacheprovider.py
/usr/lib/python2.7/site-packages/_pytest/cacheprovider.pyc
/usr/lib/python2.7/site-packages/_pytest/cacheprovider.pyo
/usr/lib/python2.7/site-packages/_pytest/capture.py
/usr/lib/python2.7/site-packages/_pytest/capture.pyc
/usr/lib/python2.7/site-packages/_pytest/capture.pyo
/usr/lib/python2.7/site-packages/_pytest/compat.py
/usr/lib/python2.7/site-packages/_pytest/compat.pyc
/usr/lib/python2.7/site-packages/_pytest/compat.pyo
/usr/lib/python2.7/site-packages/_pytest/config
/usr/lib/python2.7/site-packages/_pytest/config/__init__.py
/usr/lib/python2.7/site-packages/_pytest/config/__init__.pyc
/usr/lib/python2.7/site-packages/_pytest/config/__init__.pyo
/usr/lib/python2.7/site-packages/_pytest/config/argparsing.py
/usr/lib/python2.7/site-packages/_pytest/config/argparsing.pyc
/usr/lib/python2.7/site-packages/_pytest/config/argparsing.pyo
/usr/lib/python2.7/site-packages/_pytest/config/exceptions.py
/usr/lib/python2.7/site-packages/_pytest/config/exceptions.pyc
/usr/lib/python2.7/site-packages/_pytest/config/exceptions.pyo
/usr/lib/python2.7/site-packages/_pytest/config/findpaths.py
/usr/lib/python2.7/site-packages/_pytest/config/findpaths.pyc
/usr/lib/python2.7/site-packages/_pytest/config/findpaths.pyo
/usr/lib/python2.7/site-packages/_pytest/debugging.py
/usr/lib/python2.7/site-packages/_pytest/debugging.pyc
/usr/lib/python2.7/site-packages/_pytest/debugging.pyo
/usr/lib/python2.7/site-packages/_pytest/deprecated.py
/usr/lib/python2.7/site-packages/_pytest/deprecated.pyc
/usr/lib/python2.7/site-packages/_pytest/deprecated.pyo
/usr/lib/python2.7/site-packages/_pytest/doctest.py
/usr/lib/python2.7/site-packages/_pytest/doctest.pyc
/usr/lib/python2.7/site-packages/_pytest/doctest.pyo
/usr/lib/python2.7/site-packages/_pytest/fixtures.py
/usr/lib/python2.7/site-packages/_pytest/fixtures.pyc
/usr/lib/python2.7/site-packages/_pytest/fixtures.pyo
/usr/lib/python2.7/site-packages/_pytest/freeze_support.py
/usr/lib/python2.7/site-packages/_pytest/freeze_support.pyc
/usr/lib/python2.7/site-packages/_pytest/freeze_support.pyo
/usr/lib/python2.7/site-packages/_pytest/helpconfig.py
/usr/lib/python2.7/site-packages/_pytest/helpconfig.pyc
/usr/lib/python2.7/site-packages/_pytest/helpconfig.pyo
/usr/lib/python2.7/site-packages/_pytest/hookspec.py
/usr/lib/python2.7/site-packages/_pytest/hookspec.pyc
/usr/lib/python2.7/site-packages/_pytest/hookspec.pyo
/usr/lib/python2.7/site-packages/_pytest/junitxml.py
/usr/lib/python2.7/site-packages/_pytest/junitxml.pyc
/usr/lib/python2.7/site-packages/_pytest/junitxml.pyo
/usr/lib/python2.7/site-packages/_pytest/logging.py
/usr/lib/python2.7/site-packages/_pytest/logging.pyc
/usr/lib/python2.7/site-packages/_pytest/logging.pyo
/usr/lib/python2.7/site-packages/_pytest/main.py
/usr/lib/python2.7/site-packages/_pytest/main.pyc
/usr/lib/python2.7/site-packages/_pytest/main.pyo
/usr/lib/python2.7/site-packages/_pytest/mark
/usr/lib/python2.7/site-packages/_pytest/mark/__init__.py
/usr/lib/python2.7/site-packages/_pytest/mark/__init__.pyc
/usr/lib/python2.7/site-packages/_pytest/mark/__init__.pyo
/usr/lib/python2.7/site-packages/_pytest/mark/evaluate.py
/usr/lib/python2.7/site-packages/_pytest/mark/evaluate.pyc
/usr/lib/python2.7/site-packages/_pytest/mark/evaluate.pyo
/usr/lib/python2.7/site-packages/_pytest/mark/legacy.py
/usr/lib/python2.7/site-packages/_pytest/mark/legacy.pyc
/usr/lib/python2.7/site-packages/_pytest/mark/legacy.pyo
/usr/lib/python2.7/site-packages/_pytest/mark/structures.py
/usr/lib/python2.7/site-packages/_pytest/mark/structures.pyc
/usr/lib/python2.7/site-packages/_pytest/mark/structures.pyo
/usr/lib/python2.7/site-packages/_pytest/monkeypatch.py
/usr/lib/python2.7/site-packages/_pytest/monkeypatch.pyc
/usr/lib/python2.7/site-packages/_pytest/monkeypatch.pyo
/usr/lib/python2.7/site-packages/_pytest/nodes.py
/usr/lib/python2.7/site-packages/_pytest/nodes.pyc
/usr/lib/python2.7/site-packages/_pytest/nodes.pyo
/usr/lib/python2.7/site-packages/_pytest/nose.py
/usr/lib/python2.7/site-packages/_pytest/nose.pyc
/usr/lib/python2.7/site-packages/_pytest/nose.pyo
/usr/lib/python2.7/site-packages/_pytest/outcomes.py
/usr/lib/python2.7/site-packages/_pytest/outcomes.pyc
/usr/lib/python2.7/site-packages/_pytest/outcomes.pyo
/usr/lib/python2.7/site-packages/_pytest/pastebin.py
/usr/lib/python2.7/site-packages/_pytest/pastebin.pyc
/usr/lib/python2.7/site-packages/_pytest/pastebin.pyo
/usr/lib/python2.7/site-packages/_pytest/pathlib.py
/usr/lib/python2.7/site-packages/_pytest/pathlib.pyc
/usr/lib/python2.7/site-packages/_pytest/pathlib.pyo
/usr/lib/python2.7/site-packages/_pytest/pytester.py
/usr/lib/python2.7/site-packages/_pytest/pytester.pyc
/usr/lib/python2.7/site-packages/_pytest/pytester.pyo
/usr/lib/python2.7/site-packages/_pytest/python.py
/usr/lib/python2.7/site-packages/_pytest/python.pyc
/usr/lib/python2.7/site-packages/_pytest/python.pyo
/usr/lib/python2.7/site-packages/_pytest/python_api.py
/usr/lib/python2.7/site-packages/_pytest/python_api.pyc
/usr/lib/python2.7/site-packages/_pytest/python_api.pyo
/usr/lib/python2.7/site-packages/_pytest/recwarn.py
/usr/lib/python2.7/site-packages/_pytest/recwarn.pyc
/usr/lib/python2.7/site-packages/_pytest/recwarn.pyo
/usr/lib/python2.7/site-packages/_pytest/reports.py
/usr/lib/python2.7/site-packages/_pytest/reports.pyc
/usr/lib/python2.7/site-packages/_pytest/reports.pyo
/usr/lib/python2.7/site-packages/_pytest/resultlog.py
/usr/lib/python2.7/site-packages/_pytest/resultlog.pyc
/usr/lib/python2.7/site-packages/_pytest/resultlog.pyo
/usr/lib/python2.7/site-packages/_pytest/runner.py
/usr/lib/python2.7/site-packages/_pytest/runner.pyc
/usr/lib/python2.7/site-packages/_pytest/runner.pyo
/usr/lib/python2.7/site-packages/_pytest/setuponly.py
/usr/lib/python2.7/site-packages/_pytest/setuponly.pyc
/usr/lib/python2.7/site-packages/_pytest/setuponly.pyo
/usr/lib/python2.7/site-packages/_pytest/setupplan.py
/usr/lib/python2.7/site-packages/_pytest/setupplan.pyc
/usr/lib/python2.7/site-packages/_pytest/setupplan.pyo
/usr/lib/python2.7/site-packages/_pytest/skipping.py
/usr/lib/python2.7/site-packages/_pytest/skipping.pyc
/usr/lib/python2.7/site-packages/_pytest/skipping.pyo
/usr/lib/python2.7/site-packages/_pytest/stepwise.py
/usr/lib/python2.7/site-packages/_pytest/stepwise.pyc
/usr/lib/python2.7/site-packages/_pytest/stepwise.pyo
/usr/lib/python2.7/site-packages/_pytest/terminal.py
/usr/lib/python2.7/site-packages/_pytest/terminal.pyc
/usr/lib/python2.7/site-packages/_pytest/terminal.pyo
/usr/lib/python2.7/site-packages/_pytest/tmpdir.py
/usr/lib/python2.7/site-packages/_pytest/tmpdir.pyc
/usr/lib/python2.7/site-packages/_pytest/tmpdir.pyo
/usr/lib/python2.7/site-packages/_pytest/unittest.py
/usr/lib/python2.7/site-packages/_pytest/unittest.pyc
/usr/lib/python2.7/site-packages/_pytest/unittest.pyo
/usr/lib/python2.7/site-packages/_pytest/warning_types.py
/usr/lib/python2.7/site-packages/_pytest/warning_types.pyc
/usr/lib/python2.7/site-packages/_pytest/warning_types.pyo
/usr/lib/python2.7/site-packages/_pytest/warnings.py
/usr/lib/python2.7/site-packages/_pytest/warnings.pyc
/usr/lib/python2.7/site-packages/_pytest/warnings.pyo
/usr/lib/python2.7/site-packages/pytest-4.6.9-py2.7.egg-info
/usr/lib/python2.7/site-packages/pytest-4.6.9-py2.7.egg-info/PKG-INFO
/usr/lib/python2.7/site-packages/pytest-4.6.9-py2.7.egg-info/SOURCES.txt
/usr/lib/python2.7/site-packages/pytest-4.6.9-py2.7.egg-info/dependency_links.txt
/usr/lib/python2.7/site-packages/pytest-4.6.9-py2.7.egg-info/entry_points.txt
/usr/lib/python2.7/site-packages/pytest-4.6.9-py2.7.egg-info/not-zip-safe
/usr/lib/python2.7/site-packages/pytest-4.6.9-py2.7.egg-info/requires.txt
/usr/lib/python2.7/site-packages/pytest-4.6.9-py2.7.egg-info/top_level.txt
/usr/lib/python2.7/site-packages/pytest.py
/usr/lib/python2.7/site-packages/pytest.pyc
/usr/lib/python2.7/site-packages/pytest.pyo
/usr/share/doc/packages/python2-pytest4
/usr/share/doc/packages/python2-pytest4/AUTHORS
/usr/share/doc/packages/python2-pytest4/CHANGELOG.rst
/usr/share/doc/packages/python2-pytest4/README.rst
/usr/share/licenses/python2-pytest4
/usr/share/licenses/python2-pytest4/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 14:50:04 2024