diff --git a/src/mk/tools/tox.py b/src/mk/tools/tox.py index 56632a4..4eace2d 100644 --- a/src/mk/tools/tox.py +++ b/src/mk/tools/tox.py @@ -17,7 +17,7 @@ def is_present(self, path: str) -> bool: def actions(self) -> List[Action]: # -a is not supported by tox4! actions: List[Action] = [] - cp = ConfigParser() + cp = ConfigParser(strict=False, interpolation=None) tox_cfg = subprocess.check_output(["tox", "--showconfig"], universal_newlines=True) cp.read_string(tox_cfg) for section in cp.sections():