File: CONTRIBUTING.md

package info (click to toggle)
python-streamz 0.6.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 816 kB
  • sloc: python: 6,739; sh: 18; makefile: 16
file content (16 lines) | stat: -rw-r--r-- 684 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Contributing to Streamz

## Streamz Conda Environment
For the convenience of the community streamz offers an environment file for contributors to create conda environments. A few basic quick start commands for creating a using a streamz conda environment are found below.

### Creating Conda Development Environment
Creating the streamz conda environment can be achieved by simply running ```conda env create -f ./conda/environments/streamz_dev.yml```

### Using Conda Environment
The streamz conda environment can be activated by running ```conda activate streamz_dev```

### Run Software Tests
```shell
pip install --editable=. --requirement=requirements-test.txt
pytest -vvv
```