We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5723d91 commit 5284a3dCopy full SHA for 5284a3d
readthedocs/rtd_tests/utils.py
@@ -32,7 +32,9 @@ def make_test_git():
32
env['GIT_DIR'] = pjoin(directory, '.git')
33
chdir(directory)
34
log.info(check_output(['git', 'init'] + [directory], env=env))
35
- log.info(check_output(['git', 'add', '.'], env=env))
+ output = check_output(['git', 'add', '.'], env=env)
36
+ log.info(output)
37
+ assert '*** Please tell me who you are.' not in output
38
log.info(check_output(['git', 'commit', '-m"init"'], env=env))
39
chdir(path)
40
return directory
0 commit comments