|
1 | 1 | name: Tests
|
2 | 2 |
|
3 | 3 | on:
|
4 |
| - pull_request: |
5 |
| - push: |
6 |
| - branches: |
7 |
| - - main |
| 4 | + pull_request: |
| 5 | + push: |
| 6 | + branches: |
| 7 | + - main |
8 | 8 |
|
9 | 9 | concurrency:
|
10 |
| - group: ${{ github.workflow }}-${{ github.ref }} |
11 |
| - cancel-in-progress: true |
| 10 | + group: ${{ github.workflow }}-${{ github.ref }} |
| 11 | + cancel-in-progress: true |
12 | 12 |
|
13 | 13 | permissions:
|
14 |
| - contents: read |
| 14 | + contents: read |
15 | 15 |
|
16 | 16 | env:
|
17 |
| - DJANGO_SETTINGS_MODULE: tracdjangoplugin.settings_tests |
18 |
| - # passlib has a conditional import for `crypt` which is going away in python 3.13 |
19 |
| - # and therefore throwing warnings |
20 |
| - PYTHONWARNINGS: > |
21 |
| - error, |
22 |
| - default:::passlib.utils, |
| 17 | + DJANGO_SETTINGS_MODULE: tracdjangoplugin.settings_tests |
| 18 | + # passlib has a conditional import for `crypt` which is going away in python 3.13 |
| 19 | + # and therefore throwing warnings |
| 20 | + PYTHONWARNINGS: > |
| 21 | + error, |
| 22 | + default:::passlib.utils, |
23 | 23 |
|
24 | 24 | jobs:
|
25 |
| - noshadows: |
26 |
| - runs-on: ubuntu-24.04 |
27 |
| - steps: |
28 |
| - - name: Checkout |
29 |
| - uses: actions/checkout@v4 |
30 |
| - - uses: actions/setup-python@v5 |
31 |
| - with: |
32 |
| - python-version: '3.11' |
33 |
| - - run: pip install "tinycss2>=1.2.0" |
34 |
| - - run: python noshadows.py --tests |
| 25 | + noshadows: |
| 26 | + runs-on: ubuntu-24.04 |
| 27 | + steps: |
| 28 | + - name: Checkout |
| 29 | + uses: actions/checkout@v4 |
| 30 | + - uses: actions/setup-python@v5 |
| 31 | + with: |
| 32 | + python-version: "3.11" |
| 33 | + - run: pip install "tinycss2>=1.2.0" |
| 34 | + - run: python noshadows.py --tests |
35 | 35 |
|
36 |
| - tracdjangoplugin: |
37 |
| - runs-on: ubuntu-24.04 |
38 |
| - steps: |
39 |
| - - name: Checkout |
40 |
| - uses: actions/checkout@v4 |
41 |
| - - uses: actions/setup-python@v5 |
42 |
| - with: |
43 |
| - python-version: '3.11' |
44 |
| - - name: Install system package dependencies |
45 |
| - run: | |
46 |
| - sudo apt-get update |
47 |
| - sudo apt-get -y install subversion |
48 |
| - - name: Install requirements |
49 |
| - run: python -m pip install -r requirements.txt |
50 |
| - - name: Run tests |
51 |
| - run: python -m django test tracdjangoplugin.tests |
| 36 | + tracdjangoplugin: |
| 37 | + runs-on: ubuntu-24.04 |
| 38 | + steps: |
| 39 | + - name: Checkout |
| 40 | + uses: actions/checkout@v4 |
| 41 | + - uses: actions/setup-python@v5 |
| 42 | + with: |
| 43 | + python-version: "3.11" |
| 44 | + - name: Install system package dependencies |
| 45 | + run: | |
| 46 | + sudo apt-get update |
| 47 | + sudo apt-get -y install subversion |
| 48 | + - name: Install requirements |
| 49 | + run: python -m pip install -r requirements.txt |
| 50 | + - name: Run tests |
| 51 | + run: python -m django test tracdjangoplugin.tests |
52 | 52 |
|
53 |
| - traccheck: |
54 |
| - runs-on: ubuntu-24.04 |
55 |
| - steps: |
56 |
| - - name: Checkout |
57 |
| - uses: actions/checkout@v4 |
58 |
| - - uses: actions/setup-python@v5 |
59 |
| - with: |
60 |
| - python-version: '3.11' |
61 |
| - - name: Install system package dependencies |
62 |
| - run: | |
63 |
| - sudo apt-get update |
64 |
| - sudo apt-get -y install subversion |
65 |
| - - name: Install requirements |
66 |
| - run: python -m pip install -r requirements.txt |
67 |
| - - name: Lint Trac configuration |
68 |
| - run: python traccheck.py lint trac-env/ |
69 |
| - - name: Check frozen Trac components |
70 |
| - run: python traccheck.py components --check .TRACFREEZE.txt trac-env/ |
| 53 | + traccheck: |
| 54 | + runs-on: ubuntu-24.04 |
| 55 | + steps: |
| 56 | + - name: Checkout |
| 57 | + uses: actions/checkout@v4 |
| 58 | + - uses: actions/setup-python@v5 |
| 59 | + with: |
| 60 | + python-version: "3.11" |
| 61 | + - name: Install system package dependencies |
| 62 | + run: | |
| 63 | + sudo apt-get update |
| 64 | + sudo apt-get -y install subversion |
| 65 | + - name: Install requirements |
| 66 | + run: python -m pip install -r requirements.txt |
| 67 | + - name: Lint Trac configuration |
| 68 | + run: python traccheck.py lint trac-env/ |
| 69 | + - name: Check frozen Trac components |
| 70 | + run: python traccheck.py components --check .TRACFREEZE.txt trac-env/ |
0 commit comments