Skip to content

Commit a904a89

Browse files
committed
fix normal test
1 parent 5d40a93 commit a904a89

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.github/workflows/_tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ jobs:
3939
poetry-version: ${{ env.POETRY_VERSION }}
4040
cache-key: core
4141

42+
- name: Generate OpenAPI client
43+
run: |
44+
make generate-client-from-existing-spec
45+
4246
- name: Install dependencies
4347
shell: bash
4448
run: poetry install --with quality,tests

.github/workflows/upload-to-pypi.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ jobs:
2727
path: .venv
2828
key: venv-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('poetry.lock') }}
2929

30+
- name: Generate OpenAPI client
31+
run: |
32+
make generate-client-from-existing-spec
33+
3034
- name: Install dependencies
3135
run: |
3236
poetry config virtualenvs.in-project true

0 commit comments

Comments
 (0)