diff --git a/README.md b/README.md index 8e1565b41..c01224b0a 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ If you're working on infrastructure you will also need: ### Local tools setup -dotnet-format and fixie are required for linting and running tests, respectively. A `just` recipe will install them: +dotnet-format is required for linting. A `just` recipe will install it: ```shell just install-tools ``` diff --git a/justfile b/justfile index 06fbe0bbc..61bbabab4 100644 --- a/justfile +++ b/justfile @@ -20,8 +20,7 @@ build: # Test the .NET solution test: - @cd {{solution-root / "tests" / "TeachingRecordSystem.Core.Tests"}} && dotnet test - @cd {{solution-root / "tests" / "TeachingRecordSystem.Api.Tests"}} && dotnet fixie + @cd {{solution-root}} && dotnet test # Format the .NET solution and Terraform code format: