Skip to content

Commit ae39048

Browse files
committed
Update workflows to use pipenv-setup@v4.4.0 with editable flag
Upgraded fizyk/actions-reuse pipenv-setup action from v4.2.1 to v4.4.0 which includes built-in support for editable package installation via the editable flag. Changes: - Updated pipenv-setup to v4.4.0 in dockerised-postgres.yml, oldest-postgres.yml, and single-postgres.yml - Added editable: true parameter to all pipenv-setup steps - Split dockerised-postgres.yml combined pipenv action into separate pipenv-setup and pipenv-run steps Made-with: Cursor
1 parent e8c69c0 commit ae39048

3 files changed

Lines changed: 11 additions & 5 deletions

File tree

.github/workflows/dockerised-postgres.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,16 @@ jobs:
4949

5050
steps:
5151
- uses: actions/checkout@v6
52-
- name: Run test noproc fixture on docker
53-
uses: fizyk/actions-reuse/.github/actions/pipenv@v4.2.1
52+
- name: Set up Pipenv on python ${{ matrix.python-version }}
53+
uses: fizyk/actions-reuse/.github/actions/pipenv-setup@v4.4.0
5454
with:
5555
python-version: ${{ matrix.python-version }}
56-
command: pytest -n 0 --max-worker-restart 0 -k docker --postgresql-host=localhost --postgresql-port 5433 --postgresql-password=postgres --cov-report=xml:coverage-docker.xml
5756
allow-prereleases: true
57+
editable: true
58+
- name: Run test noproc fixture on docker
59+
uses: fizyk/actions-reuse/.github/actions/pipenv-run@v4.2.1
60+
with:
61+
command: pytest -n 0 --max-worker-restart 0 -k docker --postgresql-host=localhost --postgresql-port 5433 --postgresql-password=postgres --cov-report=xml:coverage-docker.xml
5862
- name: Upload coverage to Codecov
5963
uses: codecov/codecov-action@v5.5.2
6064
with:

.github/workflows/oldest-postgres.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,12 @@ jobs:
3636
steps:
3737
- uses: actions/checkout@v6
3838
- name: Set up Pipenv on python ${{ matrix.python-version }}
39-
uses: fizyk/actions-reuse/.github/actions/pipenv-setup@v4.2.1
39+
uses: fizyk/actions-reuse/.github/actions/pipenv-setup@v4.4.0
4040
with:
4141
python-version: ${{ matrix.python-version }}
4242
cache: false
4343
allow-prereleases: true
44+
editable: true
4445
- uses: ankane/setup-postgres@v1
4546
with:
4647
postgres-version: ${{ inputs.postgresql }}

.github/workflows/single-postgres.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,11 @@ jobs:
3636
steps:
3737
- uses: actions/checkout@v6
3838
- name: Set up Pipenv on python ${{ matrix.python-version }}
39-
uses: fizyk/actions-reuse/.github/actions/pipenv-setup@v4.2.1
39+
uses: fizyk/actions-reuse/.github/actions/pipenv-setup@v4.4.0
4040
with:
4141
python-version: ${{ matrix.python-version }}
4242
allow-prereleases: true
43+
editable: true
4344
- uses: ankane/setup-postgres@v1
4445
with:
4546
postgres-version: ${{ inputs.postgresql }}

0 commit comments

Comments
 (0)