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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
|
Source: python-pytest-trio
Section: python
Priority: optional
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders:
Michael Fladischer <fladi@debian.org>,
Build-Depends:
debhelper-compat (= 13),
dh-python,
pybuild-plugin-pyproject,
python3-all,
python3-hypothesis,
python3-outcome,
python3-pytest,
python3-pytest-cov,
python3-setuptools,
python3-sphinx,
python3-sphinx-rtd-theme,
python3-sphinxcontrib.trio,
python3-trio,
Standards-Version: 4.6.2
Homepage: https://github.com/python-trio/pytest-trio
Vcs-Browser: https://salsa.debian.org/python-team/packages/python-pytest-trio
Vcs-Git: https://salsa.debian.org/python-team/packages/python-pytest-trio.git
Rules-Requires-Root: no
Package: python-pytest-trio-doc
Section: doc
Architecture: all
Depends:
${misc:Depends},
${sphinxdoc:Depends},
Description: Pytest plugin for trio (Documentation)
This is a pytest plugin to help you test projects that use Trio, a friendly
library for concurrency and async I/O in Python.
.
Features include:
* Async tests without the boilerplate: just write
async def test_whatever(): ....
* Useful fixtures included: use autojump_clock for easy testing of code with
timeouts, or nursery to easily set up background tasks.
* Write your own async fixtures: set up an async database connection or start
a server inside a fixture, and then use it in your tests.
* If you have multiple async fixtures, pytest-trio will even do setup/teardown
concurrently whenever possible.
* Integration with the fabulous Hypothesis library, so your async tests can
use property-based testing: just use @given like you’re used to.
* Support for testing projects that use Trio exclusively and want to use
pytest-trio everywhere, and also for testing projects that support multiple
async libraries and only want to enable pytest-trio’s features for a subset
of their test suite.
.
This package contains the documentation.
Package: python3-pytest-trio
Architecture: all
Depends:
${misc:Depends},
${python3:Depends},
Suggests:
python-pytest-trio-doc,
Description: Pytest plugin for trio (Python3 version)
This is a pytest plugin to help you test projects that use Trio, a friendly
library for concurrency and async I/O in Python.
.
Features include:
* Async tests without the boilerplate: just write
async def test_whatever(): ....
* Useful fixtures included: use autojump_clock for easy testing of code with
timeouts, or nursery to easily set up background tasks.
* Write your own async fixtures: set up an async database connection or start
a server inside a fixture, and then use it in your tests.
* If you have multiple async fixtures, pytest-trio will even do setup/teardown
concurrently whenever possible.
* Integration with the fabulous Hypothesis library, so your async tests can
use property-based testing: just use @given like you’re used to.
* Support for testing projects that use Trio exclusively and want to use
pytest-trio everywhere, and also for testing projects that support multiple
async libraries and only want to enable pytest-trio’s features for a subset
of their test suite.
.
This package contains the Python 3 version of the library.
|