Skip to content

Commit 3a8b61b

Browse files
committed
fix generation script
1 parent a220d13 commit 3a8b61b

File tree

199 files changed

+8800
-934
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

199 files changed

+8800
-934
lines changed

.github/workflows/python.yml

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,31 @@
1+
# NOTE: This file is auto generated by OpenAPI Generator.
2+
# URL: https://openapi-generator.tech
3+
#
4+
# ref: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
5+
16
name: t3api Python package
27

38
on: [push, pull_request]
49

510
jobs:
611
build:
7-
runs-on: ubuntu-latest
812

13+
runs-on: ubuntu-latest
914
strategy:
1015
matrix:
1116
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1217

1318
steps:
1419
- uses: actions/checkout@v4
15-
1620
- name: Set up Python ${{ matrix.python-version }}
17-
uses: actions/setup-python@v5
21+
uses: actions/setup-python@v4
1822
with:
1923
python-version: ${{ matrix.python-version }}
20-
21-
- name: Install uv
22-
run: curl -LsSf https://astral.sh/uv/install.sh | sh
23-
24-
- name: Install dependencies with uv
24+
- name: Install dependencies
2525
run: |
26-
uv venv
27-
source .venv/bin/activate
28-
uv pip install -e .
29-
uv pip install pytest pytest-cov
30-
26+
python -m pip install --upgrade pip
27+
pip install -r requirements.txt
28+
pip install -r test-requirements.txt
3129
- name: Test with pytest
3230
run: |
33-
source .venv/bin/activate
3431
pytest --cov=t3api

0 commit comments

Comments
 (0)