busser-pybot 0.1.7 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/busser/pybot/version.rb +1 -1
- data/lib/busser/runner_plugin/pybot.rb +5 -5
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 695fa05f10222e6e5a36f8be441b7fbc3b462b6a
|
4
|
+
data.tar.gz: ccae3e7144413c9f6f1352b7cc549df4519a111f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2580024a79ab08c4546b7b0ad5e7fb7ec70ccc3df5cda4c8593f8ddfe7df437cd5f79072ca98256ed5e13357b1f5d2af7cdbf23ab0e964471f6563ee4b67b721
|
7
|
+
data.tar.gz: 70e4d7080f2c0e55a5d442626eb6d1dfe3ff9b41483653c5e06a4c468e1591cf16fac00455d25dc8f2464a0e2880d90df6950596bff7164cb504d37d7eef2eb6
|
data/lib/busser/pybot/version.rb
CHANGED
@@ -25,14 +25,14 @@ require 'busser/runner_plugin'
|
|
25
25
|
class Busser::RunnerPlugin::Pybot < Busser::RunnerPlugin::Base
|
26
26
|
|
27
27
|
postinstall do
|
28
|
-
put "Pip Downloading"
|
28
|
+
#put "Pip Downloading"
|
29
29
|
run!("curl 'https://bootstrap.pypa.io/get-pip.py' -o 'get-pip.py'")
|
30
|
-
put "Pip Downloaded"
|
31
|
-
put "Pip Installing"
|
30
|
+
#put "Pip Downloaded"
|
31
|
+
#put "Pip Installing"
|
32
32
|
run!("python get-pip.py")
|
33
|
-
put "Pip Installed"
|
33
|
+
#put "Pip Installed"
|
34
34
|
run!("pip install robotframework")
|
35
|
-
put "Pip robotframework Installed"
|
35
|
+
#put "Pip robotframework Installed"
|
36
36
|
|
37
37
|
end
|
38
38
|
|