Skip to content

Commit fc9faf4

Browse files
committed
More verbose test-docker output, so it doesn't look like it's frozen
1 parent ba3e085 commit fc9faf4

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

Makefile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ test-watch: ## uses [nodemon](https://nodemon.io/) - watches for changes to lua
1515
@nodemon -e lua -x "$(MAKE) test || exit 1"
1616

1717
test-ubuntu: ## Run tests in Ubuntu Docker container (matches CI environment)
18-
docker run --rm -v $$(PWD):/workspace -w /workspace ubuntu:latest bash -c "\
19-
apt-get update -qq && \
20-
apt-get install -y -qq software-properties-common git curl make apt-utils gcc && \
18+
@docker run --rm -v $$(PWD):/workspace -w /workspace ubuntu:latest bash -c "\
19+
apt-get update && \
20+
apt-get install -y software-properties-common git curl make apt-utils gcc && \
2121
add-apt-repository -y ppa:neovim-ppa/unstable && \
22-
apt-get update -qq && \
23-
apt-get install -y -qq neovim lua-check && \
22+
apt-get update && \
23+
apt-get install -y neovim lua-check && \
2424
mkdir -p /root/.local/share/nvim/lazy/ && \
25-
git clone --depth 1 -q https://github.com/nvim-lua/plenary.nvim.git /root/.local/share/nvim/lazy/plenary.nvim && \
26-
git clone --depth 1 --branch v0.10.0 -q https://github.com/nvim-treesitter/nvim-treesitter.git /root/.local/share/nvim/lazy/nvim-treesitter && \
25+
git clone --depth 1 https://github.com/nvim-lua/plenary.nvim.git /root/.local/share/nvim/lazy/plenary.nvim && \
26+
git clone --depth 1 --branch v0.10.0 https://github.com/nvim-treesitter/nvim-treesitter.git /root/.local/share/nvim/lazy/nvim-treesitter && \
2727
make test"
2828

2929
check: ## uses [luacheck](https://github.com/mpeterv/luacheck) - checks for any type errors or style issues

0 commit comments

Comments
 (0)