Skip to content

Commit

Permalink
[REVERT LATER] - only run TestEntitledBuilds
Browse files Browse the repository at this point in the history
  • Loading branch information
cheesesashimi committed Apr 10, 2024
1 parent c86749b commit e93591a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions test/e2e-techpreview/msbic_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import (
)

func TestBootImageReconciliation(t *testing.T) {
t.Skip()

cs := framework.NewClientSet("")

Expand Down
8 changes: 5 additions & 3 deletions test/e2e-techpreview/onclusterbuild_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,12 @@ FROM configs AS final
COPY --from=centos /etc/yum.repos.d /etc/yum.repos.d
COPY --from=centos /etc/pki/rpm-gpg/RPM-GPG-KEY-* /etc/pki/rpm-gpg/
RUN sed -i 's/\$stream/9-stream/g' /etc/yum.repos.d/centos*.repo && \
rpm-ostree install buildah cowsay && \
rpm-ostree install cowsay && \
ostree container commit`

entitledDockerfile string = `FROM configs AS final
RUN rpm-ostree install buildah && \
ostree container commit
`
ostree container commit`
)

var skipCleanup bool
Expand Down Expand Up @@ -75,6 +74,7 @@ type onClusterBuildTestOpts struct {

// Tests tha an on-cluster build can be performed with the Custom Pod Builder.
func TestOnClusterBuildsCustomPodBuilder(t *testing.T) {
t.Skip()
runOnClusterBuildTest(t, onClusterBuildTestOpts{
poolName: layeredMCPName,
customDockerfiles: map[string]string{
Expand Down Expand Up @@ -117,6 +117,7 @@ func TestEntitledBuildsRollsOutImage(t *testing.T) {
// Tests that an on-cluster build can be performed and that the resulting image
// is rolled out to an opted-in node.
func TestOnClusterBuildRollsOutImage(t *testing.T) {
t.Skip()
imagePullspec := runOnClusterBuildTest(t, onClusterBuildTestOpts{
poolName: layeredMCPName,
customDockerfiles: map[string]string{
Expand Down Expand Up @@ -267,6 +268,7 @@ func prepareForTest(t *testing.T, cs *framework.ClientSet, testOpts onClusterBui
}

func TestSSHKeyAndPasswordForOSBuilder(t *testing.T) {
t.Skip()
cs := framework.NewClientSet("")

// label random node from pool, get the node
Expand Down

0 comments on commit e93591a

Please sign in to comment.