Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .codespell.ignorewords
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
ue
decorder
NotIn
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,12 @@ codespell: ## Runs spell checking.
$(CODESPELL_BIN) --skip $(CODESPELL_SKIP) --ignore-words .codespell.ignorewords --check-filenames --check-hidden

.PHONY: test-up
test-up: ## Starts testing D-Bus instance in Docker container using docker-compose.
env UID=$$(id -u) docker-compose -f test/docker-compose.yml up -d
test-up: ## Starts testing D-Bus instance in Docker container using docker compose.
env UID=$$(id -u) docker compose -f test/docker-compose.yml up -d

.PHONY: test-down
test-down: ## Tears down testing D-Bus instance created by 'test-up'.
env UID=$$(id -u) docker-compose -f test/docker-compose.yml down
env UID=$$(id -u) docker compose -f test/docker-compose.yml down

.PHONY: test-integration
test-integration: test-up
Expand Down