fix: create AAAA DNS record for IPv6 machines" (#257)

* chore: update gitignore
* fix: create AAAA DNS record for IPv6 machines"
* test: randomize execution order to prevent order-based bugs in tests
This commit is contained in:
Gabriel
2026-03-04 15:17:27 +10:00
committed by GitHub
parent d9934b9dba
commit a507b202ec
4 changed files with 133 additions and 16 deletions
+3 -3
View File
@@ -73,14 +73,14 @@ mocks:
.PHONY: test
test:
ifeq ($(TEST_NAME),)
go test -count=1 -v ./...
go test -shuffle=on -count=1 -v ./...
else
go test -race -count=1 -v -run ^$(TEST_NAME)$$ ./...
go test -shuffle=on -race -count=1 -v -run ^$(TEST_NAME)$$ ./...
endif
.PHONY: test-e2e
test-e2e:
go test -race -count=1 -v ./test/e2e
go test -shuffle=on -race -count=1 -v ./test/e2e
.PHONY: test-clean
test-clean: