Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 653 Bytes

CONTRIBUTING.md

File metadata and controls

34 lines (26 loc) · 653 Bytes

Contributing

This document contains information for contributing to this project. All contributions are welcome!

Developing

Clone and install into a virtual environment.

git clone git@github.com:equinor/runrms.git
cd runrms
# Create or source virtual/Komodo env
pip install -U pip
pip install -e ".[dev]"
# Make a feature branch for your changes
git checkout -b some-feature-branch

Run the tests with

pytest -n auto tests

Ensure your changes will pass the various linters before making a pull request. It is expected that all code will be typed and validated with mypy.

ruff check
ruff format --check
mypy src