File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 81
81
if [ -f client-tests-failed ]; then has_error=1; echo "Client tests failed"; fi
82
82
if [ -f pilot-tests-failed ]; then has_error=1; echo "pilot tests failed"; fi
83
83
if [ ${has_error} = 1 ]; then exit 1; fi
84
+ - name : diracx filtered requests logs
85
+ if : contains(matrix.ARGS, 'TEST_DIRACX=Yes')
86
+ run : |
87
+ docker logs diracx 2>/dev/null | grep '/api/' \
88
+ | awk -F\" '{print $2, $3}' \
89
+ | awk '{print $1, $2, $4}' \
90
+ | sort | uniq -c | sort
91
+
92
+ - name : diracx error logs
93
+ if : ${{ failure() && contains(matrix.ARGS, 'TEST_DIRACX=Yes') }}
94
+ run : |
95
+ mkdir -p /tmp/service-logs
96
+ docker logs diracx 2>&1 | tee /tmp/service-logs/diracx.log
97
+ cd /tmp/DIRACRepo
98
+ ./integration_tests.py logs --no-follow --lines 1000 2>&1 | tee /tmp/service-logs/dirac.log
You can’t perform that action at this time.
0 commit comments