Skip to content

Commit 4e94132

Browse files
committed
Reverting test step
1 parent 3fecc9a commit 4e94132

File tree

1 file changed

+3
-15
lines changed

1 file changed

+3
-15
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -54,22 +54,10 @@ jobs:
5454
run: mix deps.get
5555
- name: Compile deps
5656
run: mix deps.compile
57-
- name: Compile native code ahead of time
57+
- name: Compile native code
5858
run: mix compile
59-
- name: Find SEGFAULT test
60-
run: |
61-
grep -n "test \"" test/explorer/data_frame_test.exs | head -80 | while IFS=: read line rest; do
62-
echo "=== Line $line: $rest ==="
63-
timeout 30 mix test test/explorer/data_frame_test.exs:$line --max-failures 1 2>&1 | tail -3
64-
code=$?
65-
if [ $code -eq 124 ] || [ $code -eq 139 ]; then
66-
echo "::error::CRASH at line $line (exit $code)"
67-
fi
68-
done
69-
env:
70-
MIX_ENV: test
71-
# - name: Run tests
72-
# run: mix test --warnings-as-errors
59+
- name: Run tests
60+
run: mix test --warnings-as-errors
7361
- name: Run property tests
7462
run: mix test --only property --warnings-as-errors
7563
- name: Compile once again but without optional deps

0 commit comments

Comments
 (0)