```diff
--- test_files/070-original.txt	2025-03-07 19:06:17
+++ test_files/070-modified.txt	2025-03-07 19:06:17
@@ -2,11 +2,14 @@
 
 import os
 import typing as t
+from pathlib import Path
 
 import pytest
 
 
 IS_CI = os.environ.get("CI") == "true"
+E2E = pytest.mark.e2e
+ROOT_DIR = Path(__file__).parent.parent
 
 
 def skip_if_ci(reason: str) -> t.Callable:
```
