nodejs/plans.fmf
2025-01-10 16:42:12 +01:00

43 lines
698 B
Text

# Shared metadata
discover:
how: fmf
execute:
how: tmt
# Will be overwritten by CI
#environment:
# KOJI_BUILD_ID: 123
provision:
how: container
image: 'fedora:rawhide'
prepare:
- name: Install test deps
how: install
package:
- koji
- libuv
- name: Install fresh packages from Koji
how: shell
script: ./install-rpms.sh
# Filtering
/all:
summary: Run all available tests
/smoke:
summary: Run all smoke tests
discover:
how: fmf
filter: "tag:smoke"
/integration:
summary: Run all intergraion tests
discover:
how: fmf
filter: "tag: integration"
# Way to test new TCs
#/new:
# summary: Test new TC
# discover:
# how: fmf
# filter: "tag: new"