Skip to content

Commit b5ce31e

Browse files
committed
ci: fix markdown formatting for contributing.md to pass markdownlint
fix markdown formatting for contributing.md to pass markdownlint Signed-off-by: Rich Megginson <[email protected]>
1 parent 57d709a commit b5ce31e

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

contributing.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ Where `args.json` looks like this:
134134
}
135135
}
136136
```
137+
137138
## Running CI Tests Locally
138139

139140
### Use tox-lsr with qemu

plans/test_playbooks_parallel.fmf

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,15 @@ prepare:
3131
if grep -q 'CentOS Linux release 7.9' /etc/redhat-release; then
3232
sed -i '/^mirror/d;s/#\?\(baseurl=http:\/\/\)mirror/\1vault/' /etc/yum.repos.d/*.repo
3333
fi
34+
# Replace with feature: epel: enabled once https://github.com/teemtee/tmt/pull/3128 is merged
35+
- name: Enable epel to install beakerlib
36+
script: |
37+
# CS 10 and Fedora doesn't require epel
38+
if grep -q -e 'CentOS Stream release 10' -e 'Fedora release' /etc/redhat-release; then
39+
exit 0
40+
fi
41+
yum install epel-release yum-utils -y
42+
yum-config-manager --enable epel epel-debuginfo epel-source
3443
discover:
3544
- name: Prepare managed node
3645
how: fmf
@@ -53,11 +62,5 @@ discover:
5362
# filter: tag:reserve_system
5463
# url: https://github.com/linux-system-roles/tft-tests
5564
# ref: main
56-
adjust:
57-
- when: distro == rhel-9 or distro == centos-stream-9 or distro == rhel-10 or distro == centos-stream-10
58-
prepare+:
59-
- how: feature
60-
epel: enabled
61-
order: 10
6265
execute:
63-
how: tmt
66+
how: tmt

0 commit comments

Comments
 (0)