Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 635 Bytes

CONTRIBUTING.md

File metadata and controls

41 lines (28 loc) · 635 Bytes

Install Cultionet

Clone the latest repo

git clone https://github.com/jgrss/cultionet.git

Create a virtual environment

Modify the Python version (3.8.15) as needed

pyenv virtualenv 3.8.15 venv.cnet

Activate the virtual environment

pyenv activate venv.cnet

Install

(venv.cnet) cd cultionet/
(venv.cnet) pip install -e .[test]

Create a new branch for your contribution

(venv.cnet) git checkout -b new_branch_name

After making changes, run tests

(venv.cnet) cd tests/
(venv.cnet) pytest