We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68b4a18 commit 98066deCopy full SHA for 98066de
tests/test_makefile_quality_targets.py
@@ -19,3 +19,9 @@ def test_makefile_check_target_includes_architecture_checks():
19
"check: lint format-check compile architecture-check test build"
20
in makefile_text
21
)
22
+
23
24
+def test_makefile_compile_target_covers_sdk_examples_and_tests():
25
+ makefile_text = Path("Makefile").read_text(encoding="utf-8")
26
27
+ assert "compile:\n\t$(PYTHON) -m compileall -q hyperbrowser examples tests" in makefile_text
0 commit comments