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