From 1c94f3da53427f2c1dd0a603889ef63cf8da00ab Mon Sep 17 00:00:00 2001 From: Santos Gallegos Date: Fri, 23 Feb 2018 01:26:47 -0500 Subject: [PATCH] Quick test for travis --- readthedocs/rtd_tests/utils.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/readthedocs/rtd_tests/utils.py b/readthedocs/rtd_tests/utils.py index 5d4fc616f31..1c359cfd31a 100644 --- a/readthedocs/rtd_tests/utils.py +++ b/readthedocs/rtd_tests/utils.py @@ -32,7 +32,9 @@ def make_test_git(): env['GIT_DIR'] = pjoin(directory, '.git') chdir(directory) log.info(check_output(['git', 'init'] + [directory], env=env)) - log.info(check_output(['git', 'add', '.'], env=env)) + output = check_output(['git', 'add', '.'], env=env) + log.info(output) + assert '*** Please tell me who you are.' not in output.decode() log.info(check_output(['git', 'commit', '-m"init"'], env=env)) chdir(path) return directory