We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 782e959 commit 9abc18fCopy full SHA for 9abc18f
1 file changed
.github/workflows/test.yml
@@ -110,7 +110,17 @@ jobs:
110
- name: Run Dandi API tests only
111
if: matrix.mode == 'dandi-api'
112
run: |
113
+ export DANDI_TESTS_AUDIT_CSV=/tmp/audit.csv
114
python -m pytest -s -v --cov=dandi --cov-report=xml --dandi-api dandi
115
+ if [ ! -e /tmp/audit.csv ]
116
+ then echo Audit file not created
117
+ exit 1
118
+ fi
119
+ lines="$(wc -l /tmp/audit.csv | awk '{print $1}')"
120
+ if [ "$lines" -lt 100 ]
121
+ then echo Audit file shorter than expected - only "$lines" lines
122
123
124
125
- name: Dump Docker Compose logs
126
if: failure() && startsWith(matrix.os, 'ubuntu')
0 commit comments