Skip to content

Commit 755795f

Browse files
NO-SNOW: keep only header
1 parent 8f3f4a2 commit 755795f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build_test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -213,9 +213,9 @@ jobs:
213213
echo "✅ CSV file created"
214214
if grep -q "example.com" test_requests.csv; then
215215
echo "✅ example.com request captured - script is working!"
216-
# Remove example.com from CSV since it was just a test
217-
sed -i '/example\.com/d' test_requests.csv
218-
echo "example.com test request removed from CSV"
216+
# Reset CSV to clean state for real test data (keep only header)
217+
head -1 test_requests.csv > test_requests_clean.csv && mv test_requests_clean.csv test_requests.csv
218+
echo "CSV reset to clean state for test data"
219219
script_working=true
220220
else
221221
echo "❌ example.com request NOT found in CSV"

0 commit comments

Comments
 (0)