Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/test_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def test_build():
assert os.path.exists(os.path.join(output_dir, 'index.html'))


def test_buid_with_warning():
def test_build_with_warning():
runner = CliRunner()
with runner.isolated_filesystem() as tmpDir:
# sphinx will issue warnings when generating the documentations.
Expand Down
2 changes: 1 addition & 1 deletion travis_sphinx/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def deploy(ctx, branches, cname, message, deploy_host):
"""
branch = os.environ.get('TRAVIS_BRANCH', '')
pr = os.environ.get('TRAVIS_PULL_REQUEST', '')
token = os.environ.get('GH_TOKEN', '')
token = os.environ.get('GH_TOKEN')
repo = os.environ.get('GH_REPO_SLUG')
if repo is None:
repo = os.environ.get('TRAVIS_REPO_SLUG', '')
Expand Down