Skip to content
This repository was archived by the owner on Jun 18, 2024. It is now read-only.

Latest commit

 

History

History
34 lines (28 loc) · 707 Bytes

File metadata and controls

34 lines (28 loc) · 707 Bytes

Start by cloning the repository:

$ git clone https://github.com/Infisical/infisical-python
$ cd infisical-python

We recommand that you create a virtual environment:

$ python -m venv env

Then activate the environment with:

# For linux
$ source ./env/bin/activate

# For Windows PowerShell
$ .\env\Scripts\Activate.ps1

Make sure that you have the latest version of pip to avoid errors on the next step:

$ python -m pip install --upgrade pip

Then install the project in editable mode and the dependencies with:

$ pip install -e '.[dev,test]'

To run all the tests you can use the following command:

$ pytest tests