merged command line and gui app in one command

This commit is contained in:
Thomas Peetz
2025-01-14 13:10:24 +01:00
parent 54bc17ee7d
commit 453ad2af7b
69 changed files with 589 additions and 183 deletions
+16
View File
@@ -0,0 +1,16 @@
"""
PyTest Fixtures.
"""
import pytest
from cement import fs
@pytest.fixture(scope="function")
def tmp(request):
"""
Create a `tmp` object that geneates a unique temporary directory, and file
for each test function that requires it.
"""
t = fs.Tmp()
yield t
t.remove()