Skip to content

Commit

Permalink
add ext-grunt-build system
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Guo committed Mar 2, 2016
1 parent ff84c9e commit 1fa6299
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ coverage-reports
testjunit-reports
tests/__pycache__
*.pyc
node_modules/*
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
registry=http://repo.splunk.com/artifactory/api/npm/npm/
Empty file added README.txt
Empty file.
14 changes: 14 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"name": "lib-solutions-python",
"version": "1.0.0",
"description": "SDK for solutions",
"scripts": {
"build": "python setup.py sdist",
"lint": "python setup.py lint | tee pylint.log",
"test": "python setup.py test",
"coverage": "python setup.py coverage"
},
"devDependencies": {
"ext-grunt-basebuild": "0.1.9"
}
}
2 changes: 1 addition & 1 deletion splunksolutionlib/common/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def handle_tear_down_signals(callback):
signal.signal(signal.SIGINT, callback)

if os.name == 'nt':
signal.signal(signal.SIGBREAK, callback)
signal.signal(signal.SIGBREAK, callback) #pylint: disable=E1101


def datetime_to_seconds(dt):
Expand Down

0 comments on commit 1fa6299

Please sign in to comment.