Skip to content

Commit

Permalink
Quick test for travis
Browse files Browse the repository at this point in the history
  • Loading branch information
stsewd committed Feb 23, 2018
1 parent 5723d91 commit 1c94f3d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion readthedocs/rtd_tests/utils.py
Expand Up @@ -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
Expand Down

0 comments on commit 1c94f3d

Please sign in to comment.