Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,31 @@ This package provides the IPython kernel for Jupyter.
3. `pip install -e .`

After that, all normal `ipython` commands will use this newly-installed version of the kernel.

## Running tests

Ensure you have `nosetests` installed with

```bash
pip install nose
```

and then from the root directory

```bash
nosetests ipykernel
```

## Running tests with coverage

Follow the instructions from `Running tests`. Ensure you have the `coverage` module installed with

```bash
pip install coverage
```

and then from the root directory

```bash
nosetests --with-coverage --cover-package ipykernel ipykernel
```