Skip to content

Commit

Permalink
bailout
Browse files Browse the repository at this point in the history
  • Loading branch information
jsinglet committed Nov 1, 2023
1 parent 6d808ac commit 16d8b27
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ public override void Run()
}

var transformedDirs = dirs.Select(dir => Path.GetRelativePath(Base, dir));

if(dirs.Length == 0)
{
DieWithError($"No tests detected. Please create unit tests before running this command.");
}

Parallel.For(0, NumThreads,
slice => {
Expand Down

0 comments on commit 16d8b27

Please sign in to comment.