Skip to content

Commit 0689a71

Browse files
committed
Update ubuntu-test command to be louder so it doesn't appear frozen
1 parent cddafbf commit 0689a71

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ test-watch: ## uses [nodemon](https://nodemon.io/) - watches for changes to lua
1616

1717
test-ubuntu: ## Run tests in Ubuntu Docker container (matches CI environment)
1818
@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 && \
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 -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 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)