File: main.fmf

package info (click to toggle)
python-podman 5.4.0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,140 kB
  • sloc: python: 7,532; makefile: 82; sh: 75
file content (31 lines) | stat: -rw-r--r-- 769 bytes parent folder | download | duplicates (3)
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
require:
    - make
    - python3-pip

/lint:
    tag: [ stable, lint ]
    summary: Run linting on the whole codebase
    test: cd .. && make lint

/coverage_integration:
    tag: [ stable, coverage ]
    summary: Run integration tests coverage check
    test: cd .. && make integration

/coverage_unittest:
    tag: [ stable, coverage ]
    summary: Run unit tests coverage check
    test: cd .. && make unittest

/tests:
    /base_python:
        tag: [ base ]
        summary: Run all tests on the base python version
        test: cd .. && make tests-ci-base-python
        duration: 10m

    /all_python:
        tag: [ matrix]
        summary: Run all tests for all ptyhon versions available
        test: cd .. && make tests-ci-all-python
        duration: 10m