tests
No long description provided.
Installation
dagger install github.com/sagikazarmark/daggerverse/apko/tests@a2a82eaee0a9f6668ee7f191de08c9fc61d7b3dcEntrypoint
Return Type
TestsExample
dagger -m github.com/sagikazarmark/daggerverse/apko/tests@a2a82eaee0a9f6668ee7f191de08c9fc61d7b3dc call \
func (m *MyModule) Example() *dagger.Tests  {
	return dag.
			Tests()
}@function
def example() -> dagger.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/apko/tests@a2a82eaee0a9f6668ee7f191de08c9fc61d7b3dc call \
 allfunc (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()
}build() 🔗
Return Type
Void !Example
dagger -m github.com/sagikazarmark/daggerverse/apko/tests@a2a82eaee0a9f6668ee7f191de08c9fc61d7b3dc call \
 buildfunc (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Build(ctx)
}@function
async def example() -> None:
	return await (
		dag.tests()
		.build()
	)@func()
async example(): Promise<void> {
	return dag
		.tests()
		.build()
}publish() 🔗
Return Type
Void !Example
dagger -m github.com/sagikazarmark/daggerverse/apko/tests@a2a82eaee0a9f6668ee7f191de08c9fc61d7b3dc call \
 publishfunc (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Publish(ctx)
}@function
async def example() -> None:
	return await (
		dag.tests()
		.publish()
	)@func()
async example(): Promise<void> {
	return dag
		.tests()
		.publish()
}wolfi() 🔗
Return Type
Void !Example
dagger -m github.com/sagikazarmark/daggerverse/apko/tests@a2a82eaee0a9f6668ee7f191de08c9fc61d7b3dc call \
 wolfifunc (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Wolfi(ctx)
}@function
async def example() -> None:
	return await (
		dag.tests()
		.wolfi()
	)@func()
async example(): Promise<void> {
	return dag
		.tests()
		.wolfi()
}alpine() 🔗
Return Type
Void !Example
dagger -m github.com/sagikazarmark/daggerverse/apko/tests@a2a82eaee0a9f6668ee7f191de08c9fc61d7b3dc call \
 alpinefunc (m *MyModule) Example(ctx context.Context)   {
	return dag.
			Tests().
			Alpine(ctx)
}@function
async def example() -> None:
	return await (
		dag.tests()
		.alpine()
	)@func()
async example(): Promise<void> {
	return dag
		.tests()
		.alpine()
}