m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-18 16:45:38 -05:00

Split integration test file (#4205)

This commit is contained in:
Junegunn Choi
2025-01-25 19:57:40 +09:00
committed by GitHub
parent 04017c25bb
commit 0237bf09bf
19 changed files with 4622 additions and 4519 deletions

View File

@@ -82,12 +82,15 @@ test: $(SOURCES)
github.com/junegunn/fzf/src/tui \
github.com/junegunn/fzf/src/util
itest:
ruby test/runner.rb
bench:
cd src && SHELL=/bin/sh GOOS= $(GO) test -v -tags "$(TAGS)" -run=Bench -bench=. -benchmem
lint: $(SOURCES) test/test_go.rb
lint: $(SOURCES) test/*.rb test/lib/*.rb
[ -z "$$(gofmt -s -d src)" ] || (gofmt -s -d src; exit 1)
rubocop --require rubocop-minitest --require rubocop-performance
bundle exec rubocop -a --require rubocop-minitest --require rubocop-performance
install: bin/fzf
@@ -186,4 +189,4 @@ update:
$(GO) get -u
$(GO) mod tidy
.PHONY: all generate build release test bench lint install clean docker docker-test update
.PHONY: all generate build release test itest bench lint install clean docker docker-test update