Skip to content

Commit

Permalink
formatting + options
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobbe Gyllebring committed Jun 21, 2018
1 parent 6562fda commit 1ac18b7
Showing 1 changed file with 25 additions and 2 deletions.
27 changes: 25 additions & 2 deletions docs/getting-started-dotnet-conesole.md
Expand Up @@ -10,7 +10,7 @@ Ensure you have both the standard Cone package and the dotnet-conesole cli packa
<ItemGroup>
<PackageReference Include="Cone" Version="2018.6.21" />
<DotNetCliToolReference Include="dotnet-conesole" Version="2018.6.21" />
</ItemGroup>
</ItemGroup>
```

To build and run your specs, place yourself next to the relevant .csproj
Expand All @@ -31,4 +31,27 @@ To enable multicore mode do:
```
$ dotnet conesole -- --multicore
```
Most parameters from the classic Conesole runner are supported.
Most parameters from the classic Conesole runner are supported, some useful ones:
```
--multicore Uses multiple threads to run tests.
--include-tests=<pattern> Run only tests matchingt pattern.
'*' acts as wildcard.
--run-list=<file> Executes tests in specified order.
One test name per line.
--categories=<include>,!<exclude> Select categories to run.
--dry-run Show tests that would have run.
--debug Attach debugger on startup.
--labels Display test names while running.
--test-names Display test names, sutiable for
runlist
--xml-console Output results as XML.
--teamcity TeamCity formatted output.
```

0 comments on commit 1ac18b7

Please sign in to comment.