We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f33eb46 commit 4a44aa9Copy full SHA for 4a44aa9
pavement.py
@@ -192,7 +192,7 @@ def test_install(options):
192
193
@task
194
def test():
195
- sh('bash ./tests/test.sh')
196
- sh('SHUNIT_PARENT=./tests/test.sh zsh -o shwordsplit ./tests/test.sh')
197
- sh('bash ./tests/test_misconfigured.sh')
+ for shell_cmd in [ 'bash', 'sh', 'SHUNIT_PARENT=./tests/test.sh zsh -o shwordsplit' ]:
+ sh('%s ./tests/test.sh' % shell_cmd)
+ sh('%s ./tests/test_misconfigured.sh' % shell_cmd)
198
return
0 commit comments