diff options
| author | Alassane Yattara <alassane.yattara@savoirfairelinux.com> | 2023-10-25 19:40:20 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-11-09 16:59:37 +0000 |
| commit | d34591ae7bf3c37f53bfbacf948fd9cfe01469f5 (patch) | |
| tree | 16afdf81420a955db3c21d3416b584c74683d9fe | |
| parent | ed4aed02b6aab1b53d4f9abc98265771c492cbbe (diff) | |
| download | poky-d34591ae7bf3c37f53bfbacf948fd9cfe01469f5.tar.gz | |
bitbake: toaster: Add toaster-tests-requirements.txt to add pytest and some plugins
The pytest framework makes it easy to write small, readable tests, and can scale
to support complex functional testing for applications and libraries.
- Pytest-html is a plugin for pytest that generates a HTML report for test results.
- Pytest-django allows us to test Django project/applications with the pytest testing tool.
- Pytest-env is a pytest plugin that enables us to set environment variables in a pytest.ini or pyproject.toml file
- Pytest-metadata is a plugin for pytest that provides access to test session metadata, required by pytest-html plugin
to provides metadata information in the HTML report like below:
Python 3.10.12
Platform Linux-6.2.0-35-generic-x86_64-with-glibc2.35
Packages:
- pytest: 7.4.2
- pluggy: 1.3.0
Plugins :
- django: 4.5.2
- metadata: 3.0.0
- order: 1.1.0
- html: 4.0.2
- env: 1.1.0
To make difference between bitbake and toaster python requirements,
a dedicated requirements file is created for toaster in root of toaster dir.
(Bitbake rev: 804d17df22391b2d18a68d8cb05a04841d4e551b)
Signed-off-by: Alassane Yattara <alassane.yattara@savoirfairelinux.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | bitbake/lib/toaster/tests/toaster-tests-requirements.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bitbake/lib/toaster/tests/toaster-tests-requirements.txt b/bitbake/lib/toaster/tests/toaster-tests-requirements.txt index f30ac0706c..7109c625d2 100644 --- a/bitbake/lib/toaster/tests/toaster-tests-requirements.txt +++ b/bitbake/lib/toaster/tests/toaster-tests-requirements.txt | |||
| @@ -1 +1,6 @@ | |||
| 1 | selenium>=4.13.0 | 1 | selenium>=4.13.0 |
| 2 | pytest==7.4.2 | ||
| 3 | pytest-django==4.5.2 | ||
| 4 | pytest-env==1.1.0 | ||
| 5 | pytest-html==4.0.2 | ||
| 6 | pytest-metadata==3.0.0 | ||
