We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c55a73c commit 6914ab1Copy full SHA for 6914ab1
1 file changed
tests/test_makefile_quality_targets.py
@@ -25,3 +25,10 @@ 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
28
+
29
30
+def test_makefile_uses_python3_default_and_python_module_invocation():
31
+ makefile_text = Path("Makefile").read_text(encoding="utf-8")
32
33
+ assert "PYTHON ?= python3" in makefile_text
34
+ assert "install:\n\t$(PYTHON) -m pip install -e . pytest ruff build" in makefile_text
0 commit comments