Rohit Sanjay

Results 21 issues of Rohit Sanjay

It can be created with the following commands: ```shell python -m pip install ipykernel python -m ipykernel install --user --name python3 ```

documentation

- Need unit tests on a few functions in `testbook/reference.py`. Command to generate above output: ```bash $ cd testbook $ pytest --cov=testbook --cov-report=html $ open htmlcov/index.html # or just navigate...

good first issue
testing
sprint-friendly

With #92, a new way of creating reference objects was introduced. - We will need to replace all instances of `tb.ref` with `tb.get` and also mention that one can use...

documentation
good first issue
sprint-friendly

We've [implemented](https://github.com/nteract/testbook/blob/main/testbook/reference.py#L34-L80) a bunch of container methods which help us do the following with reference objects: | Internal method| Description| | ------------- |-------------| |`__len__` | Find length of a container...

documentation
good first issue
sprint-friendly

Right now testbook only supports python kernels. We should create a way to plugin a kernel for testbook execution.

enhancement
sprint-friendly

We need a logo! 😄

help wanted
sprint-friendly
design-ux

Something along the lines of the following text, with some examples too. - pass in `run=False` (default is True) to not execute the cell as soon as it is injected...

documentation
sprint-friendly

> Also, it would be nice if the following check is supported: > 'happy_fraction' in tb Implement a `__contains__` method which returns whether the variable/function is present in the notebook...

enhancement
good first issue
sprint-friendly

Along with unit-testing, we should provide a way to compute code coverage for Jupyter Notebooks. This is likely to be another project in itself. @MSeal suggests using [trace](https://docs.python.org/3.8/library/trace.html).

enhancement