Skip to content

Commit 1ea8559

Browse files
committed
[EN-1228] --yes flag added to install and uninstall
1 parent 1251c49 commit 1ea8559

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,20 @@ jobs:
2828
python-version: ${{ matrix.python-version }}
2929
- name: Install poetry
3030
run: |
31-
pip install poetry
31+
pip install --yes poetry
3232
shell: bash
3333
- name: Set poetry env
3434
run: |
3535
poetry config virtualenvs.create false
3636
poetry install --no-root --no-dev
37-
pip install taskipy cython
37+
pip install --yes taskipy cython
3838
task build -f sdist
3939
pip uninstall --yes taskipy cython
4040
shell: bash
4141
- name: Install package artifact
4242
run: |
43-
pip install dist/dxfeed*
44-
pip uninstall dxfeed
43+
pip install --yes dist/dxfeed*
44+
pip uninstall --yes dxfeed
4545
shell: bash
4646
build:
4747
needs: installation
@@ -62,7 +62,7 @@ jobs:
6262
python-version: ${{ matrix.python-version }}
6363
- name: Install poetry
6464
run: |
65-
pip install poetry
65+
pip install --yes poetry
6666
shell: bash
6767
- name: Set poetry env
6868
run: |

0 commit comments

Comments
 (0)