File tree Expand file tree Collapse file tree 11 files changed +56
-354
lines changed
robotframework-seleniumscreenshots Expand file tree Collapse file tree 11 files changed +56
-354
lines changed Original file line number Diff line number Diff line change @@ -79,6 +79,7 @@ showcase some of the features of using Robot Framework interactively.
79
79
can't be redistributed
80
80
- ` opencv ` for image-driven testing
81
81
- ` robotframework-lint ` for helping you write clean robot syntax
82
+ - ` RESTInstance ` for testing REST APIs, including swagger
82
83
83
84
84
85
[ anaconda-project ] : https://github.com/anaconda-platform/anaconda-project
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
{% set name = "robotframework-seleniumscreenshots" %}
2
- {% set version = "0.9.4 " %}
2
+ {% set version = "0.9.5 " %}
3
3
4
4
package :
5
5
name : {{ name }}
6
6
version : {{ version }}
7
7
8
8
source :
9
9
url : https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
10
- sha256 : 1d71d5fdea0d6e7c729517ba06607217a8c371f05a953693014455dcbaf8d754
10
+ sha256 : 400f3c2213578d1e249216170cd1dd1e86999492d9e731a030beca0d87181b17
11
11
12
12
build :
13
13
number : 0
28
28
29
29
about :
30
30
home : https://github.com/datakurre/robotframework-seleniumscreenshots
31
- license : Apache-2.0
32
- license_family : Apache
33
- license_file : {{ environ["RECIPE_DIR"] }}/gpl-2.0.txt
31
+ license : BSD-3-Clause
32
+ license_family : BSD
33
+ license_file : LICENSE
34
34
summary : Robot Framework keyword library for capturing annotated screenshots with SeleniumLibrary
35
35
doc_url : https://datakurre.github.io/robotframework-seleniumscreenshots
Original file line number Diff line number Diff line change 1
1
package :
2
2
name : {% set name = "robotkernel" %}{{ name }}
3
- version : {% set version = "0.10.0 " %}{{ version }}
3
+ version : {% set version = "0.10.2 " %}{{ version }}
4
4
5
5
source :
6
6
url : https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/{{ name }}-{{ version }}.tar.gz
7
- sha256 : fcd2066359b42a0c5d32e3b772482253e5ca6e24e9271abf6ecb9b4723b66a9e
7
+ sha256 : 93560cb763d5efe3785e920aa59b2f2f2048ea84bda9f4a6868340143a9f4028
8
8
9
9
build :
10
10
number : 0
Original file line number Diff line number Diff line change 1
- {% set extensions = "@jupyterlab/[email protected] @jupyter-widgets/[email protected] [email protected] .0 " %}
1
+ {% set extensions = "@jupyterlab/[email protected] @jupyter-widgets/[email protected] [email protected] .1 " %}
2
2
{% set lab_min = "0.35.4" %}
3
3
{% set lab_max = "0.36" %}
4
4
5
5
package :
6
6
name : {% set name = "robotlab" %}{{ name }}
7
- version : {% set version = "0.10.0 " %}{{ version }}
7
+ version : {% set version = "0.10.2 " %}{{ version }}
8
8
9
9
source :
10
10
- path : ../../robotlab
11
11
folder : robotlab
12
12
- url : https://github.com/robots-from-jupyter/robotkernel/archive/{{ version }}.tar.gz
13
- sha256 : 0b62946fcc291ccc0c37ccd27dbc361ea0b09d0abe8c3c46eea358c1487ea5ed
13
+ sha256 : e30b75e043f8fcb8a2072d6b1a506a1de7d69f7f8136886f222ba56e618d0da0
14
14
folder : robotkernel
15
15
16
16
build :
17
- number : 1
17
+ number : 0
18
18
entry_points :
19
19
- robotlab = robotlab.labapp:main
20
20
- robotlab-extension = robotlab.labextensionapp:main
@@ -35,6 +35,13 @@ build:
35
35
- cp *.ipynb {{ PREFIX }}/var/www/robotkernel-examples # [unix]
36
36
- md {{ PREFIX }}\var\www\robotkernel-examples # [win]
37
37
- copy *.ipynb {{ PREFIX }}\var\www\robotkernel-examples # [win]
38
+ - cd ..
39
+ - cd docs
40
+ - cd tutorial
41
+ - mkdir -p {{ PREFIX }}/var/www/robotkernel-tutorial # [unix]
42
+ - cp *.ipynb {{ PREFIX }}/var/www/robotkernel-tutorial # [unix]
43
+ - md {{ PREFIX }}\var\www\robotkernel-tutorial # [win]
44
+ - copy *.ipynb {{ PREFIX }}\var\www\robotkernel-tutorial # [win]
38
45
39
46
requirements :
40
47
host :
54
61
- robotlab --version
55
62
- robotlab-extension list
56
63
- robotlab-examples
64
+ - robotlab-tutorial
57
65
58
66
about :
59
67
home : https://github.com/robots-from-jupyter/robotlab
Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = robotlab
3
- version = 0.10.0
3
+ version = 0.10.2
4
4
description = A pre-configured JupyterLab for demonstrating robotkernel
5
5
long_description = file: README.md
6
6
url = https://github.com/robots-from-jupyter/robotlab
@@ -31,6 +31,7 @@ console_scripts =
31
31
robotlab = robotlab.labapp:main
32
32
robotlab-extension = robotlab.labextensionapp:main
33
33
robotlab-examples = robotlab.examples:copy_robotkernel_examples
34
+ robotlab-tutorial = robotlab.tutorial:copy_robotkernel_tutorial
34
35
35
36
[options]
36
37
install_requires =
Original file line number Diff line number Diff line change 1
1
# Not strictly meaningful: currently tied to robotkernel version
2
- __version__ = "0.10.0 "
2
+ __version__ = "0.10.2 "
Original file line number Diff line number Diff line change
1
+ from pathlib import Path
2
+ import shutil
3
+ import sys
4
+
5
+ TUTORIAL_NAME = "robotkernel-tutorial"
6
+ TUTORIAL = Path (sys .prefix ) / "var" / "www" / TUTORIAL_NAME
7
+
8
+
9
+ def copy_robotkernel_tutorial (dest = None ):
10
+ dest = Path (dest ) if dest else Path ("." )
11
+ shutil .copytree (TUTORIAL , dest / TUTORIAL_NAME )
12
+ return 0
13
+
14
+
15
+ if __name__ == "__main__" :
16
+ if len (sys .argv ) > 1 :
17
+ dest = Path (sys .argv (1 ))
18
+ else :
19
+ dest = None
20
+ sys .exit (copy_robotkernel_tutorial (dest ))
Original file line number Diff line number Diff line change 36
36
NODE_MIN = os .environ .get ("NODE_MIN" , "8" )
37
37
NODE_MAX = os .environ .get ("NODE_MAX" , "9" )
38
38
RF_VERSION = os .environ .get ("ROBOTFRAMEWORK_VERSION" , "3.1.1" )
39
- VERSION = os .environ .get ("ROBOTLAB_VERSION" , "0.10.0 " )
39
+ VERSION = os .environ .get ("ROBOTLAB_VERSION" , "0.10.2 " )
40
40
CHROMEDRIVER_VERSION = os .environ .get ("CHROMEDRIVER_VERSION" , "2.45" )
41
41
IPYWIDGETS_VERSION = os .environ .get ("CHROMEDRIVER_VERSION" , "7.4.2" )
42
42
Original file line number Diff line number Diff line change
1
+ *** Settings ***
2
+ Documentation robotlab ships the robokernel tutorial
3
+ Force Tags app:robotlab-tutrial
4
+ Library Process
5
+ Library OperatingSystem
6
+
7
+ *** Test Cases ***
8
+ Can I install the tutorial?
9
+ [Documentation] Verify the robotlab-tutorial command works
10
+ Run Process ${ACTIVATE } && robotlab-tutorial shell=True cwd=${OUTPUT DIR }${/ }${OS }
11
+ Directory Should Not Be Empty ${OUTPUT DIR }${/ }${OS }${/ } robotkernel-tutorial
You can’t perform that action at this time.
0 commit comments