forked from kairos-io/kairos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Create earthly target and test for netboot Signed-off-by: Dimitris Karakasilis <dimitris@karakasilis.me> * Add new tests to the pipeline Signed-off-by: Dimitris Karakasilis <dimitris@karakasilis.me> * Fix typo Signed-off-by: Dimitris Karakasilis <dimitris@karakasilis.me> * Update tests/tests_suite_test.go Signed-off-by: Ettore Di Giacinto <mudler@users.noreply.github.com> Signed-off-by: Dimitris Karakasilis <dimitris@karakasilis.me> Signed-off-by: Ettore Di Giacinto <mudler@users.noreply.github.com> Co-authored-by: Ettore Di Giacinto <mudler@users.noreply.github.com>
- Loading branch information
1 parent
bbf02f4
commit c9d239c
Showing
4 changed files
with
84 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
package mos_test | ||
|
||
import ( | ||
"context" | ||
|
||
. "github.com/spectrocloud/peg/matcher" | ||
|
||
. "github.com/onsi/ginkgo/v2" | ||
) | ||
|
||
var _ = Describe("kairos netboot test", Label("netboot-test"), func() { | ||
BeforeEach(func() { | ||
Machine.Create(context.Background()) | ||
}) | ||
AfterEach(func() { | ||
Machine.Clean() | ||
}) | ||
|
||
It("eventually boots", func() { | ||
EventuallyConnects(1200) | ||
}) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters