- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
17 lines
761 B
INI
17 lines
761 B
INI
# -- FILE: pytest.ini (or tox.ini)
|
|
[pytest]
|
|
# --create-db - force re creation of the test database
|
|
# https://pytest-django.readthedocs.io/en/latest/database.html#create-db-force-re-creation-of-the-test-database
|
|
|
|
# --html=report.html --self-contained-html
|
|
# https://docs.pytest.org/en/latest/usage.html#creating-html-reports
|
|
# https://pytest-html.readthedocs.io/en/latest/user_guide.html#creating-a-self-contained-report
|
|
addopts = --create-db --html="Toaster Tests Report.html" --self-contained-html
|
|
|
|
# Define environment variables using pytest-env
|
|
# A pytest plugin that enables you to set environment variables in the pytest.ini file.
|
|
# https://pypi.org/project/pytest-env/
|
|
env =
|
|
TOASTER_BUILDSERVER=1
|
|
DJANGO_SETTINGS_MODULE=toastermain.settings_test
|