Repository-wide formatting pass over src/ and tests/: sorted imports and __all__ entries, dropped redundant `# -*- coding: utf-8 -*-` headers, unquoted forward-reference annotations (safe under `from __future__ import annotations`), merged nested `with` statements, moved `Iterable` and friends from `typing` to `collections.abc`, and removed `# noqa: F401` markers that no longer suppress anything. No behavioural changes. Unit and integration suites show the same four pre-existing failures before and after the pass. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
26 lines
794 B
Python
26 lines
794 B
Python
import tempfile
|
|
import unittest
|
|
from pathlib import Path
|
|
|
|
from tests.e2e._util import run
|
|
|
|
|
|
class TestMakefileThreeTimes(unittest.TestCase):
|
|
def test_make_install_three_times(self):
|
|
with tempfile.TemporaryDirectory(prefix="makefile-3x-") as tmp:
|
|
repo = Path(tmp)
|
|
|
|
# Minimal Makefile with install target
|
|
(repo / "Makefile").write_text("install:\n\t@echo install >> install.log\n")
|
|
|
|
for i in range(1, 4):
|
|
print(f"\n=== RUN {i}/3 ===")
|
|
run(["make", "install"], cwd=repo)
|
|
|
|
log = (repo / "install.log").read_text().splitlines()
|
|
self.assertEqual(
|
|
len(log),
|
|
3,
|
|
"make install should have been executed exactly three times",
|
|
)
|