---Here provide a brief description of the package---
TOODpip install git+ssh://git@github.com/sztal/cli.git
# From a specific branch, e.g. 'dev'
pip install git+ssh://git@github.com/sztal/cli.git@dev# Clone the repo
git clone git+ssh://git@github.com/sztal/cli.git
# Or from a specific branch, e.g. 'dev'
git clone git+ssh://git@github.com/sztal/cli.git@devConfigure the environment and install the package after cloning. The make commands below also set up and configure version control (GIT).
cd cli
conda env create -f environment.yaml
conda activate cli
make initMakefile defines several commands that are useful during development.
# Clean up auxiliary files
make clean
# List explicitly imported dependencies
make list-depspytest
## With automatic debugger session
pytest --pdb# Calculate and display
make coverage
# Only calculate
make cov-run
# Only display (based on previous calculations)
make cov-report