Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 613 Bytes

CONTRIBUTING.md

File metadata and controls

15 lines (11 loc) · 613 Bytes

Setting up the dev environment

To isolate dependencies from your global python installation, it is important to use a tool like virtualenv. With virtualenv you can install the dev environment by doing the following.

  • pip install -e .
  • pip install -r dev-requirements.txt
  • pip install -r tox-requirements.txt

To verify that the installation of databricks-cli is the one checked out from VCS, you can check by doing python -c "import databricks_cli; print databricks_cli.__file__".

Running Tests

  • tox