Skip to content

Commit

Permalink
check4
Browse files Browse the repository at this point in the history
  • Loading branch information
EliMoshkovich committed Mar 31, 2024
1 parent 953f090 commit a6df366
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/python-sdk-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,6 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: '3.8'

- name: setup pyenv
uses: "gabrielfalcao/pyenv-action@v18"
with:
default: 3.8
command: pip install -U pip # upgrade pip after installing python

- name: Install Docker
uses: docker-practice/actions-setup-docker@master
Expand Down Expand Up @@ -71,7 +65,9 @@ jobs:
env:
PDP_URL: http://localhost:7766
API_TIER: prod
run: ORG_PDP_API_KEY=${{ env.ENV_API_KEY }} PROJECT_PDP_API_KEY=${{ env.ENV_API_KEY }} PDP_API_KEY=${{ env.ENV_API_KEY }} PDP_URL=$PDP_URL API_TIER=$API_TIER pytest -s
run: |
pip install pytest
ORG_PDP_API_KEY=${{ env.ENV_API_KEY }} PROJECT_PDP_API_KEY=${{ env.ENV_API_KEY }} PDP_API_KEY=${{ env.ENV_API_KEY }} PDP_URL=$PDP_URL API_TIER=$API_TIER pytest -s
- name: Delete env ${{ env.ENV_NAME }}
if: always()
Expand Down

0 comments on commit a6df366

Please sign in to comment.