Skip to content

Commit

Permalink
build: add -system flag to test command for custom_executable
Browse files Browse the repository at this point in the history
This commit introduces the -system flag to the test command in the Makefile, allowing tests to be run with the system 'ls' command for the custom_executable module. This enhancement provides flexibility in testing scenarios, ensuring that both custom and system implementations can be validated effectively.
  • Loading branch information
ryan-gang committed Jan 8, 2025
1 parent 339bf9d commit ac57c48
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -16,6 +16,7 @@ build:

test:
TESTER_DIR=$(shell pwd) go test -count=1 -p 1 -v ./internal/...
TESTER_DIR=$(shell pwd) go test -count=1 -p 1 -v ./internal/custom_executable/... -system

record_fixtures:
CODECRAFTERS_RECORD_FIXTURES=true make test

0 comments on commit ac57c48

Please sign in to comment.