File tree Expand file tree Collapse file tree 4 files changed +22
-18
lines changed
Expand file tree Collapse file tree 4 files changed +22
-18
lines changed Original file line number Diff line number Diff line change @@ -51,15 +51,16 @@ jobs:
5151 with :
5252 python-version : ${{ matrix.python-version }}
5353 - uses : Gr1N/setup-poetry@v9
54- - name : Install tox
55- run : |
56- pip install tox
5754 - uses : actions/cache@v5
5855 with :
5956 path : |
6057 .tox
6158 ~/.cache/pypoetry/virtualenvs
6259 key : ${{ runner.os }}-test-py${{ matrix.python-version }}-${{ hashFiles('poetry.lock', 'tox.ini') }}
60+ - name : Install Poetry and setup Poetry virtualenv
61+ run : |
62+ poetry env use python${{ matrix.python-version }}
63+ poetry install
6364 - name : Extract Python minor version from matrix python-version
6465 run : echo "PYVER=$(echo ${{ matrix.python-version}} |cut -d. -f1,2)" >> $GITHUB_ENV
6566 - run : |
@@ -79,15 +80,16 @@ jobs:
7980 with :
8081 python-version : ${{ matrix.python-version }}
8182 - uses : Gr1N/setup-poetry@v9
82- - name : Install tox
83- run : |
84- pip install tox
8583 - uses : actions/cache@v5
8684 with :
8785 path : |
8886 .tox
8987 ~/.cache/pypoetry/virtualenvs
9088 key : ${{ runner.os }}-bench-py${{ matrix.python-version }}-${{ hashFiles('poetry.lock', 'tox.ini') }}
89+ - name : Install Poetry and setup Poetry virtualenv
90+ run : |
91+ poetry env use python${{ matrix.python-version }}
92+ poetry install
9193 - name : Extract Python minor version from matrix python-version
9294 run : echo "PYVER=$(echo ${{ matrix.python-version}} |cut -d. -f1,2)" >> $GITHUB_ENV
9395 - run : |
Original file line number Diff line number Diff line change @@ -53,15 +53,16 @@ jobs:
5353 with :
5454 python-version : ${{ matrix.python-version }}
5555 - uses : Gr1N/setup-poetry@v9
56- - name : Install tox
57- run : |
58- pip install tox
5956 - uses : actions/cache@v5
6057 with :
6158 path : |
6259 .tox
6360 ~/.cache/pypoetry/virtualenvs
6461 key : ${{ runner.os }}-test-py${{ matrix.python-version }}-${{ hashFiles('poetry.lock', 'tox.ini') }}
62+ - name : Install Poetry and setup Poetry virtualenv
63+ run : |
64+ poetry env use python${{ matrix.python-version }}
65+ poetry install
6566 - name : Install jsonnet-bundler
6667 run : |
6768 mkdir -p /opt/bin && curl -sLo /opt/bin/jb \
@@ -87,15 +88,16 @@ jobs:
8788 with :
8889 python-version : ${{ matrix.python-version }}
8990 - uses : Gr1N/setup-poetry@v9
90- - name : Install tox
91- run : |
92- pip install tox
9391 - uses : actions/cache@v5
9492 with :
9593 path : |
9694 .tox
9795 ~/.cache/pypoetry/virtualenvs
9896 key : ${{ runner.os }}-bench-py${{ matrix.python-version }}-${{ hashFiles('poetry.lock', 'tox.ini') }}
97+ - name : Install Poetry and setup Poetry virtualenv
98+ run : |
99+ poetry env use python${{ matrix.python-version }}
100+ poetry install
99101 - name : Install jsonnet-bundler
100102 run : |
101103 mkdir -p /opt/bin && curl -sLo /opt/bin/jb \
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ responses = "0.26.0"
5454black = " 26.1.0"
5555pyfakefs = " 6.1.1"
5656pytest-cov = " 7.0.0"
57- pylint = " 4.0.4 "
57+ pylint = " 4.0.5 "
5858
5959[tool .poetry .scripts ]
6060commodore = ' commodore.cli:main'
You can’t perform that action at this time.
0 commit comments