You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -11,6 +12,7 @@ This is inspired by the notebook version [here](https://github.com/ipython-contr
11
12
Note: for this to show anything, you need to enable cell timing in the notebook via Settings->Advanced Settings Editor->Notebook: `{"recordTiming": true}`
12
13
13
14
"Jupyter" is a trademark of the NumFOCUS foundation, of which Project Jupyter is a part."
15
+
14
16
## Requirements
15
17
16
18
- JupyterLab >= 2.0.2
@@ -51,7 +53,7 @@ jupyter lab --watch
51
53
52
54
To test:
53
55
54
-
```
56
+
```bash
55
57
yarn run test
56
58
```
57
59
@@ -72,6 +74,7 @@ This plugin was contributed back to the community by the [D. E. Shaw group](http
72
74
</p>
73
75
74
76
## License
77
+
75
78
This project is released under a [BSD-3-Clause license](https://github.com/deshaw/jupyterlab-execute-time/blob/master/LICENSE.txt).
76
79
77
80
"Jupyter" is a trademark of the NumFOCUS foundation, of which Project Jupyter is a part.
@@ -83,3 +86,5 @@ This project is released under a [BSD-3-Clause license](https://github.com/desha
"Use Run->Run All Cells to see various states all at once in this notebook (use me in lab!)"
15
+
]
16
+
},
17
+
{
18
+
"cell_type": "code",
19
+
"execution_count": null,
20
+
"metadata": {},
21
+
"outputs": [],
22
+
"source": [
23
+
"from time import sleep"
24
+
]
25
+
},
26
+
{
27
+
"cell_type": "code",
28
+
"execution_count": null,
29
+
"metadata": {},
30
+
"outputs": [],
31
+
"source": [
32
+
"sleep(3)"
33
+
]
34
+
},
35
+
{
36
+
"cell_type": "code",
37
+
"execution_count": null,
38
+
"metadata": {},
39
+
"outputs": [],
40
+
"source": [
41
+
"sleep(2)"
42
+
]
43
+
},
44
+
{
45
+
"cell_type": "code",
46
+
"execution_count": null,
47
+
"metadata": {},
48
+
"outputs": [],
49
+
"source": [
50
+
"# Note: for this to show anything, you need to enable cell timing in the notebook via Settings->Advanced Settings Editor->Notebook: `{\"recordTiming\": true}`\n",
0 commit comments