Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 508 Bytes

CONTRIBUTING.md

File metadata and controls

26 lines (19 loc) · 508 Bytes

Contributing to Batch SQL Translation Client

Install

Install the client dependencies (including dev dependencies) in a virtualenv.

git clone [email protected]:google/dwh-migration-tools.git
cd dwh-migration-tools
python3 -m venv venv
source venv/bin/activate
pip install -e client[dev]

Adding dependencies

Add abstract dependencies to setup.py.

Before committing

cd client && make check && make test