Skip to content

Commit 5d85cf6

Browse files
committed
fix: relax test install error conditions
1 parent cbb6791 commit 5d85cf6

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/argilla-server.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ jobs:
170170
pdm publish --no-build --repository testpypi
171171
172172
- name: Test Installing 🍿
173+
continue-on-error: true
173174
run: |
174175
pip install --index-url https://test.pypi.org/simple --no-deps $PACKAGE_NAME==$PACKAGE_VERSION
175176

.github/workflows/argilla.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,9 @@ jobs:
115115
continue-on-error: true
116116

117117
- name: Test Installing 🍿
118+
continue-on-error: true
118119
run: |
119-
pip install --index-url https://test.pypi.org/simple --no-deps $PACKAGE_NAME==$PACKAGE_VERSION
120+
pip3 install --index-url https://test.pypi.org/simple --no-deps $PACKAGE_NAME==$PACKAGE_VERSION
120121
121122
- name: Publish Package to PyPI 🥩
122123
if: github.ref == 'refs/heads/main'

0 commit comments

Comments
 (0)