summaryrefslogtreecommitdiff
path: root/zephyr/zmake/tests/test_project.py
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/zmake/tests/test_project.py')
-rw-r--r--zephyr/zmake/tests/test_project.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/zephyr/zmake/tests/test_project.py b/zephyr/zmake/tests/test_project.py
index f4808d14d5..b5facbc331 100644
--- a/zephyr/zmake/tests/test_project.py
+++ b/zephyr/zmake/tests/test_project.py
@@ -2,6 +2,8 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
+"""Test zmake project module."""
+
import pathlib
import string
import tempfile
@@ -193,6 +195,7 @@ def test_find_projects_name_conflict(tmp_path):
def test_register_variant(tmp_path):
+ """Test registering a variant."""
(tmp_path / "BUILD.py").write_text(
"""
some = register_raw_project(
@@ -236,6 +239,7 @@ another = some_variant.variant(
],
)
def test_kconfig_files(tmp_path, actual_files, config_files, expected_files):
+ """Test for setting kconfig_files property."""
for name in actual_files:
(tmp_path / name).write_text("")