Skip to content
This repository has been archived by the owner on Jun 25, 2020. It is now read-only.

Commit

Permalink
Add author name and mail for git
Browse files Browse the repository at this point in the history
  • Loading branch information
jspricke committed Jul 25, 2017
1 parent e7086d1 commit 80d9026
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/scm_test_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,9 @@ class AbstractRosinstallCLITest(unittest.TestCase):
"""Base class for cli tests"""
@classmethod
def setUpClass(self):
os.environ['GIT_AUTHOR_NAME'] = 'Your Name'
os.environ['GIT_COMMITTER_NAME'] = 'Your Name'
os.environ['GIT_AUTHOR_EMAIL'] = '[email protected]'
os.environ['EMAIL'] = 'Your Name <[email protected]>'
self.new_environ = copy.copy(os.environ)
self.new_environ["PYTHONPATH"] = os.path.join(os.getcwd(), "src")
Expand Down

0 comments on commit 80d9026

Please sign in to comment.