Metadata-Version: 2.1
Name: utestcell
Version: 0.0.15
Summary: Python magic to simplify unit testing in Colab and Jupyter
Home-page: https://github.com/pypa/sampleproject
Author: Remi Branco
Author-email: remi.branco@hotmail.fr
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/pypa/sampleproject/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Framework :: IPython
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# UTestCell
utestcell is an IPython magic function that simplifies unit testing with Colab/Jupyter notebooks.

To activate utestcell in a Colab notebook:
```python
!pip install utestcell
%load_ext utestcell
```
Then add at the top of the cell
```python
%%utestcell
```

To use a test file stored on Github:
```python
#in cell #1
url = 'url of test.py file'
```
```python
#in cell #2
%%utestcell -u:$url
```

See a detailed explanation on my <a href="https://remibranco.com/?p=221">blog</a> and on the Github repo.


