Correct CI comment regarding logging tests (#8359)

No functionality changes.

Just correcting a comment that was out of date.
This commit is contained in:
Julian 2023-08-24 23:41:43 +10:00 committed by GitHub
parent c7f42752c3
commit 8ef7576f5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ function Install-kivy-sdist {
function Test-kivy {
# Tests with default environment variables.
python -m pytest --timeout=400 --cov=kivy --cov-branch --cov-report= "$(pwd)/kivy/tests"
# Logging tests, with KIVY_LOG_MODE=TEST.
# Logging tests, with non-default log modes
$env:KIVY_LOG_MODE = 'PYTHON'
python -m pytest -m logmodepython --timeout=400 --cov=kivy --cov-append --cov-report= --cov-branch "$(pwd)/kivy/tests"
$env:KIVY_LOG_MODE = 'MIXED'