summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-20 08:45:35 +0200
committerPaul Buetow <paul@buetow.org>2026-03-20 08:45:35 +0200
commitda8e581617a0240626d2bc922916416440e65bae (patch)
tree03e9169132b7f952c5d201cff54aa603c3d44129
parent77ca4d0c7ba727fb74e4105890ac329050187114 (diff)
Update .gitignore and Makefile: ignore .amp/.claude files, add -v to integration test command
-rw-r--r--.gitignore2
-rw-r--r--Makefile2
2 files changed, 3 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index df22c27..fcbe071 100644
--- a/.gitignore
+++ b/.gitignore
@@ -35,3 +35,5 @@ id_rsa.pub
ssh_host_key
pgo-profiles/
pgo-build/
+.amp
+.claude
diff --git a/Makefile b/Makefile
index 26e63aa..c16c508 100644
--- a/Makefile
+++ b/Makefile
@@ -67,7 +67,7 @@ test:
sort -u | while read dir; do ${GO} test -tags '${GO_TAGS}' --race -v -failfast $$dir || exit 2; done
test-integration: clean build
${GO} clean -testcache
- DTAIL_INTEGRATION_TEST_RUN_MODE=yes ${GO} test -tags '${GO_TAGS}' --race -count=1 ./integrationtests
+ DTAIL_INTEGRATION_TEST_RUN_MODE=yes ${GO} test -v -tags '${GO_TAGS}' --race -count=1 ./integrationtests
benchmark: build dtail-tools
./dtail-tools benchmark -mode run
benchmark-quick: build dtail-tools