tests
No long description provided.
Installation
dagger install github.com/sagikazarmark/daggerverse/registry-config/tests@c767a220a5f507555fd415e9c9729234589fd95c
Entrypoint
Return Type
Tests
Example
dagger -m github.com/sagikazarmark/daggerverse/registry-config/tests@c767a220a5f507555fd415e9c9729234589fd95c call \
func (m *myModule) example() *Tests {
return dag.
Tests()
}
@function
def example() -> dag.Tests:
return (
dag.tests()
)
@func()
example(): Tests {
return dag
.tests()
}
Types
Tests 🔗
all() 🔗
All executes all tests.
Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/registry-config/tests@c767a220a5f507555fd415e9c9729234589fd95c call \
all
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
All(ctx)
}
@function
async def example() -> None:
return await (
dag.tests()
.all()
)
@func()
async example(): Promise<void> {
return dag
.tests()
.all()
}
withRegistryAuth() 🔗
Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/registry-config/tests@c767a220a5f507555fd415e9c9729234589fd95c call \
with-registry-auth
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
WithRegistryAuth(ctx)
}
@function
async def example() -> None:
return await (
dag.tests()
.with_registry_auth()
)
@func()
async example(): Promise<void> {
return dag
.tests()
.withRegistryAuth()
}
withRegistryAuthMultipleCredentials() 🔗
Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/registry-config/tests@c767a220a5f507555fd415e9c9729234589fd95c call \
with-registry-auth-multiple-credentials
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
WithRegistryAuthMultipleCredentials(ctx)
}
@function
async def example() -> None:
return await (
dag.tests()
.with_registry_auth_multiple_credentials()
)
@func()
async example(): Promise<void> {
return dag
.tests()
.withRegistryAuthMultipleCredentials()
}
withoutRegistryAuth() 🔗
Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/registry-config/tests@c767a220a5f507555fd415e9c9729234589fd95c call \
without-registry-auth
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
WithoutRegistryAuth(ctx)
}
@function
async def example() -> None:
return await (
dag.tests()
.without_registry_auth()
)
@func()
async example(): Promise<void> {
return dag
.tests()
.withoutRegistryAuth()
}
mountSecret() 🔗
Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/registry-config/tests@c767a220a5f507555fd415e9c9729234589fd95c call \
mount-secret
func (m *myModule) example(ctx context.Context) {
return dag.
Tests().
MountSecret(ctx)
}
@function
async def example() -> None:
return await (
dag.tests()
.mount_secret()
)
@func()
async example(): Promise<void> {
return dag
.tests()
.mountSecret()
}