Skip to content

Commit e9b9ba4

Browse files
committed
Merge pull request #114 from dwillmer/hook
Update Readme
2 parents 7e9b686 + 05d4f50 commit e9b9ba4

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

README.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,31 @@ This package provides the IPython kernel for Jupyter.
99
3. `pip install -e .`
1010

1111
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+
```bash
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+
```bash
32+
pip install coverage
33+
```
34+
35+
and then from the root directory
36+
37+
```bash
38+
nosetests --with-coverage --cover-package ipykernel ipykernel
39+
```

0 commit comments

Comments
 (0)