test_ok2/testing/plugins_integration
dependabot[bot] 022f1b4de5
build(deps): Bump pytest-bdd in /testing/plugins_integration (#11665)
Bumps [pytest-bdd](https://github.com/pytest-dev/pytest-bdd) from 7.0.0 to 7.0.1.
- [Release notes](https://github.com/pytest-dev/pytest-bdd/releases)
- [Changelog](https://github.com/pytest-dev/pytest-bdd/blob/master/CHANGES.rst)
- [Commits](https://github.com/pytest-dev/pytest-bdd/compare/7.0.0...7.0.1)

---
updated-dependencies:
- dependency-name: pytest-bdd
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Bruno Oliveira <nicoddemus@gmail.com>
2023-12-04 13:58:18 +00:00
..
.gitignore Smoke tests for assorted plugins (#7721) 2020-09-19 15:56:52 -03:00
README.rst Smoke tests for assorted plugins (#7721) 2020-09-19 15:56:52 -03:00
bdd_wallet.feature Smoke tests for assorted plugins (#7721) 2020-09-19 15:56:52 -03:00
bdd_wallet.py Smoke tests for assorted plugins (#7721) 2020-09-19 15:56:52 -03:00
django_settings.py Smoke tests for assorted plugins (#7721) 2020-09-19 15:56:52 -03:00
pytest.ini Setup strict asyncio mode 2022-01-23 23:07:28 +02:00
pytest_anyio_integration.py Smoke tests for assorted plugins (#7721) 2020-09-19 15:56:52 -03:00
pytest_asyncio_integration.py Smoke tests for assorted plugins (#7721) 2020-09-19 15:56:52 -03:00
pytest_mock_integration.py Smoke tests for assorted plugins (#7721) 2020-09-19 15:56:52 -03:00
pytest_trio_integration.py Smoke tests for assorted plugins (#7721) 2020-09-19 15:56:52 -03:00
pytest_twisted_integration.py Smoke tests for assorted plugins (#7721) 2020-09-19 15:56:52 -03:00
requirements.txt build(deps): Bump pytest-bdd in /testing/plugins_integration (#11665) 2023-12-04 13:58:18 +00:00
simple_integration.py Smoke tests for assorted plugins (#7721) 2020-09-19 15:56:52 -03:00

README.rst

This folder contains tests and support files for smoke testing popular plugins against the current pytest version.

The objective is to gauge if any intentional or unintentional changes in pytest break plugins.

As a rule of thumb, we should add plugins here:

1. That are used at large. This might be subjective in some cases, but if answer is yes to
   the question: *if a new release of pytest causes pytest-X to break, will this break a ton of test suites out there?*.
2. That don't have large external dependencies: such as external services.

Besides adding the plugin as dependency, we should also add a quick test which uses some
minimal part of the plugin, a smoke test. Also consider reusing one of the existing tests if that's
possible.