From: Salim Fadhley Date: Sun, 2 Jun 2013 00:12:59 +0000 (+0100) Subject: Added the sublime project file X-Git-Tag: v0.2.23~233 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c5b6b03a689eb076b1fb85e63d35a58b8c3afe02;p=tools%2Fpython-jenkinsapi.git Added the sublime project file --- diff --git a/misc/jenkinsapi.sublime-project b/misc/jenkinsapi.sublime-project new file mode 100644 index 0000000..38fe046 --- /dev/null +++ b/misc/jenkinsapi.sublime-project @@ -0,0 +1,58 @@ +{ + "folders": + [ + { + "path": "src" + } + ], + + "settings": + { + "python_test_runner": + { + "before_test": "source .env/bin/activate", + "after_test": "deactivate", + "test_root": "src/pythonmoo/tests", + "test_delimeter": ":", + "test_command": "nosetests" + } + }, + + "build_systems": + [ + { + + "name":"Virtualenv 2.7", + "working_dir": "${project_path:${folder}}/src", + "cmd": + [ + "${project_path}/bin/python2.7", + "$file" + ] + }, + { + + "name":"Nose 2.7", + "working_dir": "${project_path:${folder}}/src", + "cmd": + [ + "${project_path}/bin/nosetests", "${project_path}/src/jenkinsapi_tests/unittests" + ] + }, + { + + "name":"Virtualenv 3.3", + "working_dir": "${project_path:${folder}}/src", + "cmd": + [ + "source", "${project_path}/bin/activate" + ], + "cmd": + [ + "${project_path}/bin/python3.3", + "-u", + "$file" + ] + } + ] +} diff --git a/misc/readme.txt b/misc/readme.txt new file mode 100644 index 0000000..1db3e4f --- /dev/null +++ b/misc/readme.txt @@ -0,0 +1,2 @@ +This folder contains configuration files which may be useful for developers. +Almost certainly, none of these files will work from their current location. You may need to symlink them to a more useful location. \ No newline at end of file