-
Notifications
You must be signed in to change notification settings - Fork 97
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 <[email protected]> * Add new tests to the pipeline Signed-off-by: Dimitris Karakasilis <[email protected]> * Fix typo Signed-off-by: Dimitris Karakasilis <[email protected]> * Update tests/tests_suite_test.go Signed-off-by: Ettore Di Giacinto <[email protected]> Signed-off-by: Dimitris Karakasilis <[email protected]> Signed-off-by: Ettore Di Giacinto <[email protected]> Co-authored-by: Ettore Di Giacinto <[email protected]>
- 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