Dagger
Search

tests

No long description provided.

Installation

dagger install github.com/sagikazarmark/daggerverse/python/tests@d8b5409dc45cc2242792566059f18cb1e5488629

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
dagger -m github.com/sagikazarmark/daggerverse/python/tests@d8b5409dc45cc2242792566059f18cb1e5488629 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()
}

test() 🔗

Return Type
Void !
Example
dagger -m github.com/sagikazarmark/daggerverse/python/tests@d8b5409dc45cc2242792566059f18cb1e5488629 call \
 test
func (m *myModule) example(ctx context.Context)   {
	return dag.
			Tests().
			Test(ctx)
}
@function
async def example() -> None:
	return await (
		dag.tests()
		.test()
	)
@func()
async example(): Promise<void> {
	return dag
		.tests()
		.test()
}