File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed
Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ export CGO_ENABLED = 0
1212# Build flags
1313LDFLAGS := -s -w
1414
15- .PHONY : all build test test-unit test-integration test-integration-fast lint clean install build-all
15+ .PHONY : all build test test-unit test-integration test-integration-with-packs lint clean install build-all
1616
1717all : lint test build
1818
@@ -27,14 +27,16 @@ test: test-unit test-integration
2727test-unit :
2828 go test ./...
2929
30- # # test-integration: Build binary and run integration tests (including codeql_pack_install)
30+ # # test-integration: Build binary and run integration tests, skipping pack installation
31+ # # Pack installation is skipped by default. Use test-integration-with-packs to include it.
3132test-integration : build
32- scripts/run-integration-tests.sh
33-
34- # # test-integration-fast: Build binary and run integration tests, skipping pack installation
35- test-integration-fast : build
3633 scripts/run-integration-tests.sh --no-install-packs
3734
35+ # # test-integration-with-packs: Build binary and run integration tests including codeql_pack_install
36+ # # Use this when CodeQL pack dependencies have not been installed in your dev environment.
37+ test-integration-with-packs : build
38+ scripts/run-integration-tests.sh
39+
3840# # test-verbose: Run all unit tests with verbose output
3941test-verbose :
4042 go test -v ./...
You can’t perform that action at this time.
0 commit comments