Line data Source code
1 : # SPDX-FileCopyrightText: 2025 Pairinteraction Developers 2 : # SPDX-License-Identifier: LGPL-3.0-or-later 3 : 4 : """Execute the module tests.""" 5 : 6 1 : import pairinteraction.real as pi 7 1 : from pairinteraction import run_module_tests 8 : 9 : 10 1 : def test_module_tests() -> None: 11 : """Execute the module tests.""" 12 1 : database = pi.Database.get_global_database() 13 1 : assert run_module_tests(database.download_missing, database.database_dir) == 0