This commit is contained in:
parent
ba75ffd766
commit
ae522a4cc7
1 changed files with 7 additions and 1 deletions
8
Justfile
8
Justfile
|
@ -12,7 +12,13 @@ build:
|
||||||
dotnet build
|
dotnet build
|
||||||
|
|
||||||
# Runs all the known tests in the repository.
|
# Runs all the known tests in the repository.
|
||||||
test:
|
test: test-tool test-packages
|
||||||
|
|
||||||
|
test-tool:
|
||||||
|
dotnet run --project examples/SampleTool/SampleTool.csproj -- table
|
||||||
|
dotnet run --project examples/SampleTool/SampleTool.csproj -- log
|
||||||
|
|
||||||
|
test-packages:
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
for i in tests/*/*.csproj
|
for i in tests/*/*.csproj
|
||||||
do
|
do
|
||||||
|
|
Loading…
Reference in a new issue