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
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
sudo: false
language: python
python:
- 3.3
- 3.4
- 3.5
install:
- pip install flake8
script:
- flake8 --ignore E501 homu
2 changes: 1 addition & 1 deletion cfg.sample.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ secret = ""
#token = ""

## Use the Status API
#[repo.NAME.status]
#[repo.NAME.status.LABEL]
#
## String label set by status updates
#context = ""
2 changes: 1 addition & 1 deletion homu/git_helper.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/usr/bin/env python3

import sys
import subprocess
import os

SSH_KEY_FILE = os.path.join(os.path.dirname(__file__), '../cache/key')


def main():
args = ['ssh', '-i', SSH_KEY_FILE, '-S', 'none'] + sys.argv[1:]
os.execvp('ssh', args)
Expand Down
Loading