File tree 1 file changed +5
-7
lines changed
1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change 12
12
13
13
jobs :
14
14
python-source :
15
- runs-on : ubuntu-latest
15
+ runs-on : ${{ matrix.operating_system }}
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
+ settings_module : ["single_db", "multi_db"]
20
+ operating_system :
21
+ ["ubuntu-latest", "macos-latest", "windows-latest"]
24
22
steps :
25
23
- uses : actions/checkout@v4
26
24
- uses : oven-sh/setup-bun@v2
33
31
- name : Install Python Dependencies
34
32
run : pip install --upgrade pip hatch uv
35
33
- name : Run Single DB Tests
36
- run : hatch test --python ${{ matrix.python-version }} --ds=${{matrix.settings_module}} -v
34
+ run : hatch test --python ${{ matrix.python-version }} --ds=test_app.settings_ ${{matrix.settings_module}} -v
37
35
38
36
python-formatting :
39
37
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments