File: plans.fmf

package info (click to toggle)
scikit-build-core 0.11.1-3
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 2,408 kB
  • sloc: python: 13,380; ansic: 140; cpp: 134; sh: 27; fortran: 18; makefile: 7
file content (35 lines) | stat: -rw-r--r-- 799 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
/:
  inherit: false

/pytest:
  summary: Run all pytest
  prepare:
    - name: Install test packages
      how: install
      package:
        # Pip install everything
        - python3-pip
        # Test everything we got
        - gcc-c++
        - gfortran
        - cmake
        - ninja-build
        # For FindPython
        - python3-devel
        # There are tests that use FetchContent git
        - git
    - name: Prepare environment
      how: shell
      script: |
        # Fake a git archive
        cat << EOF > .git_archival.txt
        node: 47431d4eefbac9c3a7c49e62c73e624b932023eb
        node-date: 2025-02-27T16:18:39-05:00
        describe-name: v0.11.0
        EOF
        pip install --user .[test]
  discover:
    how: fmf
    filter: "tag: pytest"
  execute:
    how: tmt