|
4 | 4 | [Robot Framework]: http://robotframework.org |
5 | 5 | [Jupyter]: https://jupyter.org |
6 | 6 |
|
7 | | -| docs | demo | pipes | |
8 | | -|:-----------------------:|:---------------------------:|:-----------------------------:| |
9 | | -| [![docs-badge][]][docs] | [![binder-badge][]][binder] | [![pipeline-badge]][pipeline] | |
| 7 | +| pip | conda | docs | demo | pipes | |
| 8 | +|:-----------------------:|:-----------------------:|:-----------------------:|:---------------------------:|:-----------------------------:| |
| 9 | +| [![pip-badge][]][pip] | TODO | [![docs-badge][]][docs] | [![binder-badge][]][binder] | [![pipeline-badge]][pipeline] | |
10 | 10 |
|
11 | 11 |
|
12 | 12 | # Using |
13 | 13 | Write `.robot` files that use `JupyterLibrary` keywords. |
14 | 14 |
|
15 | | - *** Settings *** |
16 | | - Library JupyterLibrary |
17 | | - Suite Setup Wait for New Jupyter Server to be Ready |
18 | | - Test Teardown Reset JupyterLab and Close |
19 | | - Suite Teardown Terminate All Jupyter Servers |
20 | | - |
21 | | - *** Test Cases *** |
22 | | - A Notebook in JupyterLab |
23 | | - Open JupyterLab |
24 | | - Launch a new JupyterLab Document |
25 | | - Add and Run JupyterLab Code Cell |
26 | | - Wait Until JupyterLab Kernel Is Idle |
27 | | - Capture Page Screenshot |
| 15 | +```robotframework |
| 16 | +*** Settings *** |
| 17 | +Library JupyterLibrary |
| 18 | +Suite Setup Wait for New Jupyter Server to be Ready |
| 19 | +Test Teardown Reset JupyterLab and Close |
| 20 | +Suite Teardown Terminate All Jupyter Servers |
| 21 | +
|
| 22 | +*** Test Cases *** |
| 23 | +A Notebook in JupyterLab |
| 24 | + Open JupyterLab |
| 25 | + Launch a new JupyterLab Document |
| 26 | + Add and Run JupyterLab Code Cell |
| 27 | + Wait Until JupyterLab Kernel Is Idle |
| 28 | + Capture Page Screenshot |
| 29 | +``` |
28 | 30 |
|
29 | 31 | See the [acceptance tests][] for examples. |
30 | 32 |
|
31 | 33 |
|
32 | 34 | # Installation |
33 | | -> _TODO: release on pypi, conda-forge_ |
| 35 | +```bash |
| 36 | +pip install robotframework-jupyterlibrary |
| 37 | +``` |
| 38 | +> _TODO: release on conda-forge_ |
34 | 39 |
|
35 | 40 | ## Development Installation |
36 | 41 |
|
@@ -71,6 +76,8 @@ from a number of other projects: |
71 | 76 | [pipeline-badge]: https://dev.azure.com/nickbollweg/nickbollweg/_apis/build/status/bollwyvl.robotframework-jupyterlibrary |
72 | 77 | [pipeline]: https://dev.azure.com/nickbollweg/nickbollweg/_build/latest?definitionId=2 |
73 | 78 | [docs-badge]: https://readthedocs.org/projects/robotframework-jupyterlibrary/badge/?version=latest |
| 79 | +[pip-badge]: https://img.shields.io/pypi/v/robotframework-jupyterlibrary.svg |
| 80 | +[pip]: https://pypi.org/project/robotframework-jupyterlibrary |
74 | 81 | [docs]: https://robotframework-jupyterlibrary.readthedocs.io |
75 | 82 |
|
76 | 83 | [SeleniumLibrary]: https://github.com/robotframework/SeleniumLibrary |
|
0 commit comments