tests: Always run all tests
That makes it easier to see which ones fail.
This commit is contained in:
parent
af9b0e0290
commit
9d218c301f
@ -47,13 +47,16 @@ npm install axe-core chrome-remote-interface sizzle
|
||||
export TEST_OS=fedora-32
|
||||
export TEST_AUDIT_NO_SELINUX=1
|
||||
|
||||
# FIXME: testSessionRecordingShell fails
|
||||
test/verify/check-login -tv --machine \$HOST:22 --browser \$HOST:9090 TestLogin.{testBasic,testExpired,testSELinuxRestrictedUser}
|
||||
RC=0
|
||||
|
||||
# FIXME: testSessionRecordingShell fails
|
||||
test/verify/check-login -tv --machine \$HOST:22 --browser \$HOST:9090 TestLogin.{testBasic,testExpired,testSELinuxRestrictedUser} || RC=1
|
||||
|
||||
# check-menu is not @nondestructive yet, keep it last
|
||||
for t in networking-firewall sosreport storage-basic storage-ignored storage-partitions storage-used storage-lvm2 menu accounts; do
|
||||
test/verify/check-\$t -tv --machine \$HOST:22 --browser \$HOST:9090
|
||||
test/verify/check-\$t -tv --machine \$HOST:22 --browser \$HOST:9090 || RC=1
|
||||
done
|
||||
|
||||
exit \$RC
|
||||
EOF
|
||||
|
||||
# reset system changes from verify tests, for running this multiple times in a row
|
||||
|
Loading…
Reference in New Issue
Block a user