Skip to content

Commit 1a878fb

Browse files
Refactor pytest command in auto-tests-win.yml
Condensed pytest command to a single line for readability.
1 parent 3b7fcd6 commit 1a878fb

1 file changed

Lines changed: 1 addition & 8 deletions

File tree

.github/workflows/auto-tests-win.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,7 @@ jobs:
4242
run: |
4343
$env:SDL_VIDEODRIVER="dummy"
4444
$env:SDL_AUDIODRIVER="dummy"
45-
python -m pytest -vv --maxfail=1 --disable-warnings ^
46-
tests/test_algorithms.py ^
47-
tests/test_database.py ^
48-
tests/test_email.py ^
49-
tests/test_export_json.py ^
50-
tests/test_export_pdf.py ^
51-
tests/test_translation.py ^
52-
tests/test_validation.py
45+
python -m pytest -vv --maxfail=1 --disable-warnings tests/test_algorithms.py tests/test_database.py tests/test_email.py tests/test_export_json.py tests/test_export_pdf.py tests/test_translation.py tests/test_validation.py
5346
5447
# 2) UBUNTU JOB (Runs ALL tests with missing: test_gui, test_system, test_integration, test_settings, anything gui/tk/vm tk)
5548
ubuntu-tests:

0 commit comments

Comments
 (0)