Dagger
Search

e2e

No long description provided.

Installation

dagger install github.com/dagger/PsScriptAnalyzer/.dagger/modules/e2e@833a43816226611ac5aa2c5657f66dadf53fb08c

Entrypoint

Return Type
E2E !
Example
dagger -m github.com/dagger/PsScriptAnalyzer/.dagger/modules/e2e@833a43816226611ac5aa2c5657f66dadf53fb08c call \
func (m *MyModule) Example() *dagger.E2E  {
	return dag.
			E2e()
}
@function
def example() -> dagger.E2E:
	return (
		dag.e2e()
	)
@func()
example(): E2E {
	return dag
		.e2e()
}

Types

E2E 🔗

End-to-end checks for the PSScriptAnalyzer module

base() 🔗

Return the PSScriptAnalyzer version installed in the imported module’s base image

Return Type
String !
Example
dagger -m github.com/dagger/PsScriptAnalyzer/.dagger/modules/e2e@833a43816226611ac5aa2c5657f66dadf53fb08c call \
 base
func (m *MyModule) Example(ctx context.Context) string  {
	return dag.
			E2e().
			Base(ctx)
}
@function
async def example() -> str:
	return await (
		dag.e2e()
		.base()
	)
@func()
async example(): Promise<string> {
	return dag
		.e2e()
		.base()
}

workspaceCheck() 🔗

Run the imported module’s workspace-level check

Return Type
Void !
Arguments
NameTypeDefault ValueDescription
wsWorkspace -No description provided
Example
echo 'Custom types are not supported in shell examples'
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			E2e().
			Workspacecheck(ctx)
}
@function
async def example() -> None:
	return await (
		dag.e2e()
		.workspacecheck()
	)
@func()
async example(): Promise<void> {
	return dag
		.e2e()
		.workspaceCheck()
}

workspaceCheckWithExtraFiles() 🔗

Run the imported module’s workspace check with extra context files included

Return Type
Void !
Arguments
NameTypeDefault ValueDescription
wsWorkspace -No description provided
Example
echo 'Custom types are not supported in shell examples'
func (m *MyModule) Example(ctx context.Context)   {
	return dag.
			E2e().
			Workspacecheckwithextrafiles(ctx)
}
@function
async def example() -> None:
	return await (
		dag.e2e()
		.workspacecheckwithextrafiles()
	)
@func()
async example(): Promise<void> {
	return dag
		.e2e()
		.workspaceCheckWithExtraFiles()
}