File: test.yml

package info (click to toggle)
podman-compose 1.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,004 kB
  • sloc: python: 10,946; sh: 107; javascript: 48; makefile: 13
file content (40 lines) | stat: -rw-r--r-- 1,180 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
name: Tests

on:
  push:
  pull_request:

jobs:
  test:
    strategy:
      fail-fast: false
      matrix:
        python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13' ]

    runs-on: ubuntu-latest
    container:
      image: "docker.io/library/python:${{ matrix.python-version }}-bookworm"
      # cgroupns needed to address the following error:
      # write /sys/fs/cgroup/cgroup.subtree_control: operation not supported
      options: --privileged --cgroupns=host
    steps:
    - uses: actions/checkout@v4
    - name: Install dependencies
      run: |
        set -e
        apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y podman
        python -m pip install --upgrade pip
        pip install -r requirements.txt
        pip install -r test-requirements.txt
    - name: Run integration tests
      run: |
        python -m unittest discover -v tests/integration
      env:
        TESTS_DEBUG: 1
    - name: Run unit tests
      run: |
        coverage run --source podman_compose -m unittest discover tests/unit
    - name: Report coverage
      run: |
        coverage combine
        coverage report --format=markdown | tee -a $GITHUB_STEP_SUMMARY