16 lines
519 B
Bash
Executable file
16 lines
519 B
Bash
Executable file
#!/bin/bash
|
|
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
|
|
|
interval="--since 2021-08-01 --until 2022-01-31"
|
|
|
|
rlJournalStart
|
|
rlPhaseStartTest "Filed bugs"
|
|
rlRun -s "did --bz-filed $interval --config $(pwd)/config"
|
|
rlAssertGrep "BZ#2042920 - Checkout of a custom ref fails" $rlRun_LOG
|
|
rlPhaseEnd
|
|
|
|
rlPhaseStartTest "Closed bugs"
|
|
rlRun -s "did --bz-closed $interval --config $(pwd)/config"
|
|
rlAssertGrep "BZ#1985089 - tmt provision virtual" $rlRun_LOG
|
|
rlPhaseEnd
|
|
rlJournalEnd
|