Skip to content

Latest commit

 

History

History
29 lines (26 loc) · 621 Bytes

README.md

File metadata and controls

29 lines (26 loc) · 621 Bytes

cli

The Pruner CLI that reduces the amount of time spent running tests.

To do

  • Providers (dotnet)
  • Sample test projects
  • Unit tests

pruner dotnet

await execa("docker-compose", [
    ...this.getFilesArguments(args),
    "--project-name",
    chunk.name,
    "run",
    "--service-ports",
    "--use-aliases",
    "--volume",
    `${chunk.hostMachineDirectoryPath}:/.pruner`,
    "--entrypoint",
    "/bin/sh",
    serviceName,
    "-c",
    `dotnet test --no-build --verbosity normal --filter "${testFilter}" --logger "junit;LogFilePath=/.pruner/${individualReportFileName}"`
], {
    cwd: args.cwd
});