Skip to content

Latest commit

 

History

History
33 lines (29 loc) · 553 Bytes

CONTRIBUTING.md

File metadata and controls

33 lines (29 loc) · 553 Bytes

Getting Started

Get the repo

Fork and clone the repo.

git clone --recursive https://github.com/<your-fork>/spark-substrait-gateway.git
cd spark-substrait-gateway

Update the submodules

git submodule init
git submodule update --recursive

Conda env

Create a conda environment with developer dependencies.

conda env create -f environment.yml
conda activate spark-substrait-gateway-env

Build

Python package

Editable installation.

pip install -e .

Test

Run tests in the project's root dir.

pytest