Skip to content

Commit

Permalink
Try fix deploy 4: fix macos test
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander.A.Utkin committed Sep 6, 2024
1 parent 8efe5cd commit 5e5d095
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
run: |
python3 -m pip install twine
python3 -m pip install --break-system-packages twine
python3 -m twine upload --verbose dist/* -u __token__ -p pypi-$PYPI_TOKEN
# wait for deploy finishing on test pypi server
sleep 240
Expand All @@ -39,7 +39,7 @@ jobs:
brew install reindexer
shell: bash
- name: Install PyReindexer
run: python3 -m pip install -vvv pyreindexer
run: python3 -m pip install --break-system-packages -vvv pyreindexer
shell: bash
- name: Test
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-deploy-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ jobs:
shell: bash
- uses: actions/checkout@v4
- name: Install PyReindexer
run: python3 -m pip install -vvv --index-url https://test.pypi.org/simple/ --no-deps pyreindexer
run: python3 -m pip install --break-system-packages -vvv --index-url https://test.pypi.org/simple/ --no-deps pyreindexer
shell: bash
- name: Prepare Test Environment
run: python3 -m pip install pytest==6.2.5 delegator envoy pyhamcrest==2.0.2
run: python3 -m pip install --break-system-packages pytest==6.2.5 delegator envoy pyhamcrest==2.0.2
shell: bash
- name: Test
run: |
Expand Down

0 comments on commit 5e5d095

Please sign in to comment.