| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,18 @@ | |||
| 1 | + language: python | ||
| 2 | + python: | ||
| 3 | + - "2.6" | ||
| 4 | + - "2.7" | ||
| 5 | + - "3.3" | ||
| 6 | + - "3.4" | ||
| 7 | + - "pypy" | ||
| 8 | + matrix: | ||
| 9 | + allow_failures: | ||
| 10 | + - python: "2.6" | ||
| 11 | + - python: "3.3" | ||
| 12 | + - python: "3.4" | ||
| 13 | + - python: "pypy" | ||
| 14 | + fast_finish: true | ||
| 15 | + install: | ||
| 16 | + - pip install -r requirements-dev.txt | ||
| 17 | + script: | ||
| 18 | + - make flake8 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,20 @@ | |||
| 1 | + .PHONY: all virtualenv | ||
| 2 | + MAX_LINE_LENGTH=110 | ||
| 3 | + | ||
| 4 | + virtualenv: ./env/requirements.built | ||
| 5 | + | ||
| 6 | + env: | ||
| 7 | + virtualenv env | ||
| 8 | + | ||
| 9 | + ./env/requirements.built: env requirements-dev.txt | ||
| 10 | + ./env/bin/pip install -r requirements-dev.txt | ||
| 11 | + cp requirements-dev.txt ./env/requirements.built | ||
| 12 | + | ||
| 13 | + flake8: | ||
| 14 | + flake8 --max-line-length=$(MAX_LINE_LENGTH) *.py | ||
| 15 | + | ||
| 16 | + test: | ||
| 17 | + nosetests -v | ||
| 18 | + | ||
| 19 | + autopep8: | ||
| 20 | + autopep8 --max-line-length=$(MAX_LINE_LENGTH) -i *.py | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,4 @@ | |||
| 1 | + autopep8 | ||
| 2 | + flake8 | ||
| 3 | + flake8-blind-except | ||
| 4 | + nose | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -119,6 +119,3 @@ class Framework(unittest.TestCase): | |||
| 119 | 119 | def testLaunchAndClose(self): | |
| 120 | 120 | rv = r.Zeroconf() | |
| 121 | 121 | rv.close() | |
| 122 | - | ||
| 123 | - if __name__ == '__main__': | ||
| 124 | - unittest.main() | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments