Skip to content

Commit

Permalink
tests(git): add test to cover not a git repository case (TheKevJames#311
Browse files Browse the repository at this point in the history
)

This commit adds a test to cover the folder is not a
git repository corner case.
  • Loading branch information
vchrombie authored and andy-maier committed Dec 23, 2022
1 parent 7628dd3 commit f86ffa1
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion tests/git_test.py
Expand Up @@ -8,7 +8,7 @@
from unittest import mock

import coveralls.git

from coveralls.exception import CoverallsException

GIT_COMMIT_MSG = 'first commit'
GIT_EMAIL = 'me@here.com'
Expand Down Expand Up @@ -108,6 +108,22 @@ def test_gitlog_envvars(self):
}


class GitInfoTestNotAGitRepository(unittest.TestCase):
def setUp(self):
self.dir = tempfile.mkdtemp()

os.chdir(self.dir)

def tearDown(self):
shutil.rmtree(self.dir)

def test_gitlog_not_a_git_repo(self):
git_info = coveralls.git.git_info()

self.assertRaises(CoverallsException)
assert git_info == {}


class GitInfoTestBranch(GitTest):
@mock.patch.dict(os.environ, {
'GITHUB_ACTIONS': 'true',
Expand Down

0 comments on commit f86ffa1

Please sign in to comment.