File tree Expand file tree Collapse file tree 5 files changed +48
-127
lines changed Expand file tree Collapse file tree 5 files changed +48
-127
lines changed Original file line number Diff line number Diff line change @@ -16,12 +16,12 @@ jobs:
16
16
strategy :
17
17
matrix :
18
18
python-version : ["3.10"]
19
- poetry-version : ["1.3 .2"]
19
+ poetry-version : ["1.4 .2"]
20
20
steps :
21
21
- name : Checkout
22
22
uses : actions/checkout@v3
23
- - name : Install Poetry
24
- run : pipx install poetry
23
+ - name : Install Poetry ${{matrix.poetry-version}}
24
+ run : pipx install poetry==${{matrix.poetry-version}}
25
25
- name : " Setup Python ${{matrix.python-version}}"
26
26
uses : actions/setup-python@v4
27
27
with :
Original file line number Diff line number Diff line change 1
- name : " Run smoke tests"
1
+ name : Run smoke tests
2
2
3
3
on :
4
4
schedule :
@@ -10,19 +10,18 @@ jobs:
10
10
strategy :
11
11
matrix :
12
12
python-version : ['3.10']
13
+ poetry-version : ['1.4.2']
13
14
steps :
14
- - name : " Checkout"
15
+ - name : Checkout
15
16
uses : actions/checkout@v3
16
- - name : " Setup Python"
17
+ - name : Install Poetry ${{matrix.poetry-version}}
18
+ run : pipx install poetry==${{matrix.poetry-version}}
19
+ - name : Setup Python ${{matrix.python-version}}
17
20
uses : actions/setup-python@v4
18
21
with :
19
22
python-version : ${{matrix.python-version}}
20
- - name : " Setup Poetry"
21
- uses : abatilo/actions-poetry@3.7.4
22
- with :
23
- poetry-version : ' 1.1.13'
24
- - name : " Setup Python packages"
23
+ cache : poetry
24
+ - name : Install dependencies
25
25
run : poetry install
26
- - name : " Run Python smoke tests"
26
+ - name : Run Python smoke tests
27
27
run : poetry run pytest -m smoke
28
- # TODO: add testing job for web application
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ ARG PYTHON_VERSION=3.10
2
2
3
3
FROM python:${PYTHON_VERSION}-slim-buster as build
4
4
5
- ENV POETRY_VERSION=1.3 .2
5
+ ENV POETRY_VERSION=1.4 .2
6
6
7
7
ENV PIP_DISABLE_PIP_VERSION_CHECK=on
8
8
ENV PIP_NO_CACHE_DIR=off
You can’t perform that action at this time.
0 commit comments