Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions .zuul.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,17 @@
pre-run: playbooks/setup-env.yaml
run: playbooks/system-test.yaml

- job:
name: system-test-fedora-42
description: Run Toolbx's system tests in Fedora 42
timeout: 9000
nodeset:
nodes:
- name: fedora-42
label: cloud-fedora-42
pre-run: playbooks/setup-env.yaml
run: playbooks/system-test.yaml

- job:
name: system-test-fedora-41
description: Run Toolbx's system tests in Fedora 41
Expand All @@ -81,39 +92,28 @@
pre-run: playbooks/setup-env.yaml
run: playbooks/system-test.yaml

- job:
name: system-test-fedora-39
description: Run Toolbx's system tests in Fedora 39
timeout: 9000
nodeset:
nodes:
- name: fedora-39
label: cloud-fedora-39
pre-run: playbooks/setup-env.yaml
run: playbooks/system-test.yaml

- project:
periodic:
jobs:
- system-test-fedora-rawhide
- system-test-fedora-42
- system-test-fedora-41
- system-test-fedora-40
- system-test-fedora-39
check:
jobs:
- unit-test
- unit-test-migration-path-for-coreos-toolbox
- unit-test-restricted
- system-test-fedora-rawhide
- system-test-fedora-42
- system-test-fedora-41
- system-test-fedora-40
- system-test-fedora-39
gate:
jobs:
- unit-test
- unit-test-migration-path-for-coreos-toolbox
- unit-test-restricted
- system-test-fedora-rawhide
- system-test-fedora-42
- system-test-fedora-41
- system-test-fedora-40
- system-test-fedora-39
5 changes: 5 additions & 0 deletions test/system/002-help.bats
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ load 'libs/helpers.bash'

setup() {
_setup_environment
pushd "$HOME" || return 1
}

teardown() {
popd || return 1
}

@test "help: Smoke test" {
Expand Down
4 changes: 0 additions & 4 deletions test/system/101-create.bats
Original file line number Diff line number Diff line change
Expand Up @@ -639,8 +639,6 @@ teardown() {
}

@test "create: Try using both --distro and --image" {
pull_distro_image fedora 34

run "$TOOLBOX" --assumeyes create --distro fedora --image fedora-toolbox:34

assert_failure
Expand All @@ -650,8 +648,6 @@ teardown() {
}

@test "create: Try using both --image and --release" {
pull_distro_image fedora 34

run "$TOOLBOX" --assumeyes create --image fedora-toolbox:34 --release 34

assert_failure
Expand Down