From 350545069cf352ca8026a5bf695268f93700d88d Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Tue, 10 Dec 2013 17:31:29 -0400 Subject: make step names concise --- master.cfg | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/master.cfg b/master.cfg index ed13482..cdbf442 100644 --- a/master.cfg +++ b/master.cfg @@ -192,13 +192,13 @@ install_virt = ShellCommand(name='Installing Virtual Environment', command=['cp', '-r', '/home/buildslave/venv/.venv', '.']) make_resources = ShellCommand(name='compile qt resources', - description='make ui ...', + description='make ui', command=['make']) -run_tests = ShellCommand(name='Running Tests', description='Running tests', +run_tests = ShellCommand(name='run_tests', description='run_tests', command=['pkg/tools/with_venv.sh', './run_tests.sh', '--coverage']) -develop_mode = ShellCommand(name='run in develop mode', +develop_mode = ShellCommand(name='develop', description='setup develop', command=['pkg/tools/with_venvwrapper.sh', 'leap-bitmask', 'python', 'setup.py', 'develop']) @@ -208,8 +208,8 @@ develop_mode_soledad = ShellCommand(name='develop mode (soledad)', run_tests_venv = ShellCommand( - name='Running Tests (venv)', - description="Running tests in a virtualenv via virtualenvwrapper", + name='tests (venv)', + description="run_tests", command=['pkg/tools/with_venvwrapper.sh', 'leap-bitmask', 'xvfb-run', './run_tests.sh', '-N', '--coverage'], env={'HOME':'/home/buildslave', 'WORKON_HOME':'/home/buildslave/Virtualenvs', 'VIRTUALENVWRAPPER_HOOK_DIR':'/home/buildslave/Virtualenvs', @@ -218,30 +218,30 @@ run_tests_venv = ShellCommand( # 'PATH':'/home/buildslave/Virtualenvs/leap-bitmask/bin:/home/buildslave/Virtualenvs/leap-bitmask/local/lib/python2.7/site-packages:/usr/local/bin:/usr/bin:/bin'}) run_tests_py = ShellCommand( - name='Running Tests (venv)', - description="Running tests in a virtualenv via virtualenvwrapper", + name='tests (venv)', + description="run_tests", command=['pkg/tools/with_venvwrapper.sh', 'leap-bitmask', 'python', 'setup.py', 'test']) run_tests_py_soledad = ShellCommand( - name='Running Tests (venv)', - description="Running tests in a virtualenv via virtualenvwrapper", + name='tests (venv)', + description="run_tests", command=['common/pkg/tools/with_venvwrapper.sh', 'leap-bitmask', './run_tests.sh']) -run_tox = ShellCommand(name='Running tox', description='Running tox', +run_tox = ShellCommand(name='tox', description='tox', command=['pkg/tools/with_venv.sh', 'tox', '-v']) -run_pep8 = ShellCommand(name='Running pep8', description='Running pep8', +run_pep8 = ShellCommand(name='pep8', description='pep8', command=['pkg/tools/with_venvwrapper.sh', 'leap-bitmask', 'pep8', '--ignore=E202,W602 --exclude=ui_*,*_rc.py,_version.py --repeat', 'src/leap']) -run_pep8_soledad = ShellCommand(name='Running pep8', description='Running pep8', +run_pep8_soledad = ShellCommand(name='pep8', description='pep8', command=['common/pkg/tools/with_venvwrapper.sh', 'leap-bitmask', 'pep8', '--ignore=E202,W602 --exclude=ui_*,*_rc.py,_version.py --repeat', 'common/src/leap']) -run_coverage = ShellCommand(name='Running coverage', description='Running coverage', +run_coverage = ShellCommand(name='coverage', description='coverage', command=['pkg/tools/with_venv.sh', 'coverage', 'html', '-d', 'docs/covhtml', '-i', '--include=src/leap/*', '--omit=src/leap/base/tests/*,src/leap/eip/tests/*,src/leap/gui/tests/*,/src/leap/util/tests/*'], -- cgit v1.2.3