Skip to content

Commit

Permalink
Fixed pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
danyi1212 committed Dec 23, 2024
1 parent 2beb377 commit d53f8fe
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/pdp_cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pdp_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit d53f8fe

Please sign in to comment.