File tree 1 file changed +6
-20
lines changed
1 file changed +6
-20
lines changed Original file line number Diff line number Diff line change 16
16
strategy :
17
17
matrix :
18
18
python-version : ["3.9", "3.10", "3.11", "3.12"]
19
+ settings_module :
20
+ [
21
+ " test_app.settings_single_db" ,
22
+ " test_app.settings_multi_db" ,
23
+ ]
19
24
steps :
20
25
- uses : actions/checkout@v4
21
26
- uses : oven-sh/setup-bun@v2
28
33
- name : Install Python Dependencies
29
34
run : pip install --upgrade pip hatch uv
30
35
- name : Run Single DB Tests
31
- run : hatch test --python ${{ matrix.python-version }} --ds=test_app.settings_single_db -v
32
-
33
- python-source-multi-db :
34
- runs-on : ubuntu-latest
35
- strategy :
36
- matrix :
37
- python-version : ["3.9", "3.10", "3.11", "3.12"]
38
- steps :
39
- - uses : actions/checkout@v4
40
- - uses : oven-sh/setup-bun@v2
41
- with :
42
- bun-version : latest
43
- - name : Use Python ${{ matrix.python-version }}
44
- uses : actions/setup-python@v5
45
- with :
46
- python-version : ${{ matrix.python-version }}
47
- - name : Install Python Dependencies
48
- run : pip install --upgrade pip hatch uv
49
- - name : Run Multi-DB Tests
50
- run : hatch test --python ${{ matrix.python-version }} --ds=test_app.settings_multi_db -v
36
+ run : hatch test --python ${{ matrix.python-version }} --ds=${{matrix.settings_module}} -v
51
37
52
38
python-formatting :
53
39
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments