Update poetry to 1.5.1 (#1804)
* update poetry to 1.5.1 inside workflows * update lock file to poetry 1.5.1 * test run 1 * test run 2 * run 3 * try different sortorder * cli should use --no-root here are the refereneces. https://python-poetry.org/docs/basic-usage/#installing-dependencies-only https://pip.pypa.io/en/stable/topics/local-project-installs/#regular-installs * cache migrations aswell * test flake * optimize docker image for regtest building * playng * remove test run 1 * remove run 2 * remove run 3 * run 4 * run 6 * run 7 * run 8 * run 9 * run 10
This commit is contained in:
parent
d0d5c4d033
commit
f7cbe74d77
10 changed files with 177 additions and 273 deletions
8
.github/workflows/tests.yml
vendored
8
.github/workflows/tests.yml
vendored
|
|
@ -8,7 +8,7 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
python-version: ["3.9"]
|
||||
poetry-version: ["1.3.1"]
|
||||
poetry-version: ["1.5.1"]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Set up Poetry ${{ matrix.poetry-version }}
|
||||
|
|
@ -22,7 +22,7 @@ jobs:
|
|||
cache: "poetry"
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
poetry install
|
||||
poetry install --no-root
|
||||
- name: Run tests
|
||||
run: make test
|
||||
postgres:
|
||||
|
|
@ -45,7 +45,7 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
python-version: ["3.9"]
|
||||
poetry-version: ["1.3.1"]
|
||||
poetry-version: ["1.5.1"]
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Set up Poetry ${{ matrix.poetry-version }}
|
||||
|
|
@ -59,7 +59,7 @@ jobs:
|
|||
cache: "poetry"
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
poetry install
|
||||
poetry install --no-root
|
||||
- name: Run tests
|
||||
env:
|
||||
LNBITS_DATABASE_URL: postgres://postgres:postgres@0.0.0.0:5432/postgres
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue