diff --git a/.github/workflows/pdp_cicd.yml b/.github/workflows/pdp_cicd.yml index 21676147..d567d42e 100644 --- a/.github/workflows/pdp_cicd.yml +++ b/.github/workflows/pdp_cicd.yml @@ -69,7 +69,8 @@ jobs: - name: Run Pytests run: | python -m pip install --upgrade pip - pip install ".[dev]" + pip install -r ./requirements.txt + pip install -r ./requirements-dev.txt pytest -s --cache-clear horizon/tests/ - name: Run E2E tests diff --git a/.github/workflows/pdp_tests.yml b/.github/workflows/pdp_tests.yml index bf32ee6f..222b116d 100644 --- a/.github/workflows/pdp_tests.yml +++ b/.github/workflows/pdp_tests.yml @@ -27,6 +27,6 @@ jobs: - name: Run Pytests run: | python -m pip install --upgrade pip - pip install -r horizon/requirements.txt - pip install -r horizon/requirements-dev.txt + pip install -r ./requirements.txt + pip install -r ./requirements-dev.txt pytest -s --cache-clear horizon/tests/ diff --git a/README.md b/README.md index ce7d1fb0..d437150b 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,8 @@ You can deploy the PDP to production in multiple designs. See the [Permit.io doc 1. Clone the repository 2. Install the dependencies ```bash -pip install ".[dev]" +pip install -r ./requirements.txt +pip install -r ./requirements-dev.txt ``` ### Running locally (during development)