We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7e9b686 + 05d4f50 commit e9b9ba4Copy full SHA for e9b9ba4
README.md
@@ -9,3 +9,31 @@ This package provides the IPython kernel for Jupyter.
9
3. `pip install -e .`
10
11
After that, all normal `ipython` commands will use this newly-installed version of the kernel.
12
+
13
+## Running tests
14
15
+Ensure you have `nosetests` installed with
16
17
+```bash
18
+pip install nose
19
+```
20
21
+and then from the root directory
22
23
24
+nosetests ipykernel
25
26
27
+## Running tests with coverage
28
29
+Follow the instructions from `Running tests`. Ensure you have the `coverage` module installed with
30
31
32
+pip install coverage
33
34
35
36
37
38
+nosetests --with-coverage --cover-package ipykernel ipykernel
39
0 commit comments