Skip to content

Commit

Permalink
refactor(makefile): simplify test target and dependency management
Browse files Browse the repository at this point in the history
- Modify test target to depend on dev target, ensuring plugin hosts are built
- Remove redundant build commands from test target
- Streamline Makefile test preparation process
  • Loading branch information
qianlifeng committed Feb 20, 2025
1 parent 2a6c159 commit 4d71e48
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,7 @@ dev: _check_deps
$(MAKE) -C wox.plugin.host.python build
$(MAKE) -C wox.ui.flutter/wox build

test:
# build the plugin host to makesure the plugin host is working
$(MAKE) -C wox.plugin.host.nodejs build
$(MAKE) -C wox.plugin.host.python build

test: dev
cd wox.core && go test ./...

only_test:
Expand Down

0 comments on commit 4d71e48

Please sign in to comment.