Dagger
Search

tests

No long description provided.

Installation

dagger install github.com/sagikazarmark/daggerverse/apko/tests@51f987ed6cd739e7cd845016591df5be9358205b

Entrypoint

Return Type
Tests
Example
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
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()
}

build() 🔗

Return Type
Void !
Example
func (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
func (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
func (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
func (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()
}