Skip to content

Commit

Permalink
Revert "Trying to set up appveyor for windows based CI" (#4317)
Browse files Browse the repository at this point in the history
  • Loading branch information
elicwhite authored Aug 20, 2016
1 parent 940133f commit 3a14b8f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 23 deletions.
19 changes: 0 additions & 19 deletions appveyor.yml

This file was deleted.

8 changes: 4 additions & 4 deletions pylint-recursive.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
'''
Author: gregorynicholas (github), modified by Jacob Henderson (jacohend, github)
Module that runs pylint on all python scripts found in a directory tree..
'''
'''

import os
#import re
Expand All @@ -19,7 +19,7 @@ def check(module):
'''
apply pylint to the file specified if it is a *.py file
'''
module_name = module.rsplit(os.sep, 1)[1]
module_name = module.rsplit('/', 1)[1]
if module[-3:] == ".py" and module_name not in IGNORED_FILES:
print "CHECKING ", module
pout = os.popen('pylint %s'% module, 'r')
Expand All @@ -34,10 +34,10 @@ def check(module):
errors.append("FILE: " + module)
errors.append("FAILED pylint inspection: " + line)
return False

if __name__ == "__main__":
try:
print sys.argv
print sys.argv
BASE_DIRECTORY = sys.argv[1]
except IndexError:
print "no directory specified, defaulting to current working directory"
Expand Down

0 comments on commit 3a14b8f

Please sign in to comment.