Skip to content

Commit

Permalink
wip11
Browse files Browse the repository at this point in the history
  • Loading branch information
EliMoshkovich committed Apr 11, 2024
1 parent 2739071 commit 84f1649
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/pdp_cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,12 @@ jobs:

- name: Run Pytests
run: |
export PYTHONPATH=$(pwd)
python -m pip install --upgrade pip
pip install flake8 pytest pytest-cov
python setup.py install
pip install cryptography=42.0.5
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
#pip install cryptography=42.0.5
#if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
if [ -f requirements.txt ]; then pip install -r --force-reinstall requirements.txt; fi
pytest -s --cache-clear --cov=app horizon/tests/ > pytest-coverage.txt
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ uvicorn[standard]>=0.17.6,<1
logzio-python-handler
ddtrace
protobuf>=3.20.2 # not directly required, pinned by Snyk to avoid a vulnerability
opal-common @ git+https://github.com/permitio/opal.git@master#subdirectory=packages/opal-common
opal-client @ git+https://github.com/permitio/opal.git@master#subdirectory=packages/opal-client

0 comments on commit 84f1649

Please sign in to comment.