lib/busser/runner_plugin/mamba.rb in busser-mamba-0.2.1 vs lib/busser/runner_plugin/mamba.rb in busser-mamba-0.2.2
- old
+ new
@@ -17,20 +17,21 @@
#
class Mamba < Base
postinstall do
ensure_pip
pip_install(
- '-e git+git://github.com/nestorsalceda/mamba.git#egg=mamba')
+ 'https://github.com/nestorsalceda/mamba/archive/master.zip')
end
def test
suite_path = suite_path('mamba').to_s
requirements_file = File.join(suite_path, 'requirements.txt')
if File.exists?(requirements_file)
pip_install("-r #{requirements_file}")
end
+ info 'Running mamba ...'
run!("mamba #{suite_path}")
end
end
end
end