Skip to content

Commit 1c94f3d

Browse files
committed
Quick test for travis
1 parent 5723d91 commit 1c94f3d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

readthedocs/rtd_tests/utils.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ def make_test_git():
3232
env['GIT_DIR'] = pjoin(directory, '.git')
3333
chdir(directory)
3434
log.info(check_output(['git', 'init'] + [directory], env=env))
35-
log.info(check_output(['git', 'add', '.'], env=env))
35+
output = check_output(['git', 'add', '.'], env=env)
36+
log.info(output)
37+
assert '*** Please tell me who you are.' not in output.decode()
3638
log.info(check_output(['git', 'commit', '-m"init"'], env=env))
3739
chdir(path)
3840
return directory

0 commit comments

Comments
 (0)