From 8be0c1519f322a1a91b6e50b91ecdc8d681232f8 Mon Sep 17 00:00:00 2001 From: Chris <2653277+chennin@users.noreply.github.com> Date: Fri, 24 May 2024 13:58:46 -0400 Subject: [PATCH] Expand parse test coverage by reading all countries (#156) --- test/parser_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/parser_test.py b/test/parser_test.py index dde06e3..20773d2 100644 --- a/test/parser_test.py +++ b/test/parser_test.py @@ -30,6 +30,7 @@ def test_real_save(tmp_path): from stellarisdashboard import cli, config from pathlib import Path config.CONFIG.debug_mode = True + config.CONFIG.read_all_countries = True config.CONFIG.base_output_path = tmp_path cli.f_parse_saves(save_path="test/saves") assert len(list(tmp_path.glob('**/*.db'))) > 0, f"When parsing saves, no output .db files were produced (output folder: {tmp_path})"