Skip to content

Latest commit

 

History

History
51 lines (33 loc) · 847 Bytes

File metadata and controls

51 lines (33 loc) · 847 Bytes

sesgx logo

package-name

Description (same that is provided in the pyproject.toml, which is the same as the repository description).

Usage

# code example of how to use the package

Development

Create a virtual environment:

python -m venv .venv

Activate the virtual environment:

source .venv/bin/activate  # if using linux

Install the project in editable mode:

pip install -e .

Testing (ONLY IF PACKAGE HAS TESTS)

Install test dependencies:

pip install ".[dev-test]"

Run the test command from the provided script:

./scripts/test.sh

After running the tests, a coverage report will be available in htmlcov/index.html. You can run the following command to open the report using google chrome:

google-chrome htmlcov/index.html