diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 9a1366f1..cd7d2484 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -176,13 +176,6 @@ jobs:
                 path: complement_test_results.jsonl
                 if-no-files-found: error
 
-            - name: Upload Complement logs (gotestfmt)
-              uses: actions/upload-artifact@v4
-              with:
-                name: complement_test_logs_gotestfmt.log
-                path: complement_test_logs_gotestfmt.log
-                if-no-files-found: error
-
             - name: Diff Complement results with checked-in repo results
               run: |
                   diff -u --color=always tests/test_results/complement/test_results.jsonl complement_test_results.jsonl > >(tee -a complement_diff_output.log)
@@ -204,11 +197,6 @@ jobs:
                       echo '```diff' >> $GITHUB_STEP_SUMMARY
                       tail -n 100 complement_diff_output.log | sed 's/\x1b\[[0-9;]*m//g' >> $GITHUB_STEP_SUMMARY
                       echo '```' >> $GITHUB_STEP_SUMMARY
-
-                      echo '# Complement gotestfmt logs (last 100 lines)' >> $GITHUB_STEP_SUMMARY
-                      echo '```diff' >> $GITHUB_STEP_SUMMARY
-                      tail -n 100 complement_test_logs_gotestfmt.log | sed 's/\x1b\[[0-9;]*m//g' >> $GITHUB_STEP_SUMMARY
-                      echo '```' >> $GITHUB_STEP_SUMMARY
                   fi
 
     build:
diff --git a/bin/complement b/bin/complement
index b869bad6..89521796 100755
--- a/bin/complement
+++ b/bin/complement
@@ -67,7 +67,6 @@ set +o pipefail
 env \
     -C "$COMPLEMENT_SRC" \
     COMPLEMENT_BASE_IMAGE="$COMPLEMENT_BASE_IMAGE" \
-    COMPLEMENT_ENABLE_DIRTY_RUNS=1 \
     go test -tags="conduwuit_blacklist" -timeout 1h -json ./tests/... | tee "$LOG_FILE"
 set -o pipefail
 
@@ -79,17 +78,17 @@ cat "$LOG_FILE" | jq -s -c 'sort_by(.Test)[]' | jq -c '
     ) | {Action: .Action, Test: .Test}
     ' > "$RESULTS_FILE"
 
-if command -v gotestfmt &> /dev/null; then
-    echo "using gotestfmt on $LOG_FILE"
-    grep '^{"Time":' "$LOG_FILE" | gotestfmt > "complement_test_logs_gotestfmt.log"
-fi
+#if command -v gotestfmt &> /dev/null; then
+#    echo "using gotestfmt on $LOG_FILE"
+#    grep '{"Time":' "$LOG_FILE" | gotestfmt > "complement_test_logs_gotestfmt.log"
+#fi
 
 echo ""
 echo ""
 echo "complement logs saved at $LOG_FILE"
 echo "complement results saved at $RESULTS_FILE"
-if command -v gotestfmt &> /dev/null; then
-    echo "complement logs in gotestfmt pretty format outputted at complement_test_logs_gotestfmt.log (use an editor/terminal/pager that interprets ANSI colours and UTF-8 emojis)"
-fi
+#if command -v gotestfmt &> /dev/null; then
+#    echo "complement logs in gotestfmt pretty format outputted at complement_test_logs_gotestfmt.log (use an editor/terminal/pager that interprets ANSI colours and UTF-8 emojis)"
+#fi
 echo ""
 echo ""