commit: 6ed7fbfc580b4765aeb3edf83c2655438aed34ed
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 13 16:44:01 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Dec 13 16:44:01 2025 +0000
URL: https://gitweb.gentoo.org/proj/steve.git/commit/?id=6ed7fbfc
Create test devices in a subdirectory, for easy ACL
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
test/conftest.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/conftest.py b/test/conftest.py
index 894f265..07e9d07 100644
--- a/test/conftest.py
+++ b/test/conftest.py
@@ -15,7 +15,7 @@ class Steve:
retval: int | None = None
def start(self, args: list[str]) -> None:
- self.dev_name = f"steve.test.{os.getpid()}"
+ self.dev_name = f"steve.test/{os.getpid()}"
self.dev_path = Path(f"/dev/{self.dev_name}")
self.subprocess = subprocess.Popen(
[os.environ.get("STEVE", "steve"), "--dev-name", self.dev_name,
*args]