notebook/CONTRIBUTING.md

94 lines
2.2 KiB
Markdown
Raw Normal View History

# Contributing to RetroLab
Thanks for contributing to RetroLab!
Make sure to follow [Project Jupyter's Code of Conduct](https://github.com/jupyter/governance/blob/master/conduct/code_of_conduct.md)
for a friendly and welcoming collaborative environment.
## Setting up a development environment
Note: You will need NodeJS to build the extension package.
The `jlpm` command is JupyterLab's pinned version of [yarn](https://yarnpkg.com/) that is installed with JupyterLab. You may use
`yarn` or `npm` in lieu of `jlpm` below.
**Note**: we recomment using `mamba` to speed the creating of the environment.
```bash
# create a new environment
mamba create -n retrolab -c conda-forge python nodejs -y
# activate the environment
conda activate retrolab
# Install package in development mode
pip install -e .
```
`retrolab` follows a monorepo structure. To build all the packages at once:
```bash
2021-04-20 18:11:00 +08:00
jlpm build
```
There is also a `watch` script to watch for changes and rebuild the app automatically:
```bash
jlpm watch
```
To make sure the `retrolab` server extension is installed:
```bash
$ jupyter server extension list
Config dir: /home/username/.jupyter
Config dir: /home/username/miniforge3/envs/retrolab/etc/jupyter
jupyterlab enabled
- Validating jupyterlab...
2020-12-24 17:30:34 +08:00
jupyterlab 3.0.0 OK
retrolab enabled
- Validating retrolab...
retrolab 0.1.0rc2 OK
nbclassic enabled
- Validating nbclassic...
nbclassic OK
Config dir: /usr/local/etc/jupyter
```
Then start RetroLab with:
```bash
jupyter retro
```
## Running Tests
To run the tests:
```bash
jlpm run build:test
jlpm run test
```
There are also end to end tests to cover higher level user interactions, located in the `app/test` folder. To run these tests:
```bash
# start a new Jupyter server in a terminal
npm start
# run the end to end tests
jlpm run test:e2e
# to run in headful mode
PWDEBUG=1 jlpm run test:e2e
# to run with firefox as the browser
BROWSER=firefox jlpm run test:e2e
```
Running the end to end tests in headful mode will trigger something like the following:
![end-to-end-smoke](https://user-images.githubusercontent.com/591645/106299215-34a67b00-6255-11eb-854c-756a8790246b.gif)