File: pythonpackage.yml

package info (click to toggle)
textual 2.1.2-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 55,080 kB
  • sloc: python: 85,423; lisp: 1,669; makefile: 101
file content (56 lines) | stat: -rw-r--r-- 1,817 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
name: Test Textual module

on:
  pull_request:
    paths:
      - ".github/workflows/pythonpackage.yml"
      - "**.py"
      - "**.pyi"
      - "**.css"
      - "**.ambr"
      - "**.lock"
      - "Makefile"

env:
  PYTEST_ADDOPTS: "--color=yes"

jobs:
  build:
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ubuntu-latest, windows-latest, macos-latest]
        python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
    defaults:
      run:
        shell: bash
    steps:
      - uses: actions/checkout@v4.1.1
      - name: Install Poetry
        run: pipx install poetry==1.7.1
      - name: Set up Python ${{ matrix.python-version }}
        uses: actions/setup-python@v4.7.1
        with:
          python-version: ${{ matrix.python-version }}
          cache: "poetry"
      - name: Install dependencies
        run: poetry install --no-interaction --extras syntax
        if: ${{ matrix.python-version != '3.8' }}
      - name: Install dependencies for 3.8
        run: poetry install --no-interaction
        if: ${{ matrix.python-version == '3.8' }}
      - name: Test with pytest (Py39+ - with syntax highlighting)
        run: |
          poetry run pytest tests -v --cov=./src/textual --cov-report=xml:./coverage.xml --cov-report term-missing
        if: ${{ matrix.python-version != '3.8' }}
      - name: Test with pytest (Py38 - without syntax highlighting)
        run: |
          poetry run pytest tests -v --cov=./src/textual --cov-report=xml:./coverage.xml --cov-report term-missing -m 'not syntax'
        if: ${{ matrix.python-version == '3.8' }}
      - name: Upload snapshot report
        if: always()
        uses: actions/upload-artifact@v4
        with:
          name: snapshot_report_textual
          path: snapshot_report.html
          overwrite: true