Merge pull request 'templates: add python-project' (#10) from python-template into main

This commit is contained in:
DavHau
2023-07-20 17:32:28 +02:00
committed by Gitea
parent cadfb90bd3
commit eaaf0d2992
12 changed files with 248 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import tempfile
import my_lib
# using the fixture from conftest.py
def test_is_git_repo(git_repo_path: str):
result = my_lib.detect_git_repo(git_repo_path)
assert result is True
# using the fixture from conftest.py
def test_is_not_git_repo():
with tempfile.TemporaryDirectory() as tempdir:
result = my_lib.detect_git_repo(tempdir)
assert result is False