busser-pybot 0.1.3 → 0.1.4
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 +12 -14
- 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: 28b2c10a980eb18d08abee75aae558949dbd7c13
|
|
4
|
+
data.tar.gz: 3a2cf270fccd4214b3217f6ead6d54e3df147ab6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bfab2575ee5dc2b0bc1ed76e3cb348bacd92bcc2c7d8073551c8e66f04ace2c66ab66c119e9608a3b83d2e6bcbfdcf34a9ab8e19667505c7f278b4b0ef60eeb8
|
|
7
|
+
data.tar.gz: 0ebb8bfbcde73d392efc965e05ab04344622599c877df98eb2325167813bace7a0eeede17b02a29e2647143d9028c704ac8a9d489c82045d554ff5cf8f449ace
|
data/lib/busser/pybot/version.rb
CHANGED
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
16
16
|
# See the License for the specific language governing permissions and
|
|
17
17
|
# limitations under the License.
|
|
18
|
-
|
|
18
|
+
|
|
19
19
|
require 'busser/runner_plugin'
|
|
20
20
|
|
|
21
21
|
# A Busser runner plugin for Pybot.
|
|
@@ -25,21 +25,19 @@ require 'busser/runner_plugin'
|
|
|
25
25
|
class Busser::RunnerPlugin::Pybot < Busser::RunnerPlugin::Base
|
|
26
26
|
|
|
27
27
|
postinstall do
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
28
|
+
package "python"
|
|
29
|
+
log "Python Installed"
|
|
30
|
+
log "Pip Downloading"
|
|
31
|
+
system 'curl "https://bootstrap.pypa.io/get-pip.py" -o "get-pip.py"'
|
|
32
|
+
log "Pip Downloaded"
|
|
33
|
+
log "Pip Installing"
|
|
34
|
+
system "python get-pip.py"
|
|
35
|
+
log "Pip Installed"
|
|
36
|
+
system "pip install robotframework"
|
|
37
|
+
log "Pip robotframework Installed"
|
|
40
38
|
end
|
|
41
39
|
|
|
42
40
|
def test
|
|
43
|
-
run!("pybot #{suite_path("pybot")}")
|
|
41
|
+
run!("#{vendor_path("pybot").join("bin/pybot")} #{suite_path("pybot")}")
|
|
44
42
|
end
|
|
45
43
|
end
|