You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
echo "Running debug command inside container to check .nyc_output..."
190
-
if [ -f "./docker.build.yml" ]; then
191
-
echo "Using Docker build..."
192
-
echo "Command: docker-compose -f ./docker.build.yml -f ./docker.build.env exec test ls -la /usr/src/app/.nyc_output"
193
-
docker-compose -f ./docker.build.yml --env-file ./docker.build.env exec test ls -la /usr/src/app/.nyc_output 2>/dev/null || echo "Container not running or .nyc_output not found in container"
194
-
else
195
-
echo "Docker compose file not found"
196
-
fi
197
-
echo ""
198
-
echo "=== Try manual NYC merge in HOST ==="
199
-
cd /home/runner/work/RedisInsight/RedisInsight/redisinsight/api
200
-
201
-
if [ -d ".nyc_output" ] && [ "$(find .nyc_output -name "*.json" | wc -l)" -gt 0 ]; then
172
+
if [ -d "coverage/.nyc_output" ] && [ "$(find coverage/.nyc_output -name "*.json" | wc -l)" -gt 0 ]; then
173
+
echo "✅ .nyc_output directory found with $(find coverage/.nyc_output -name "*.json" | wc -l) files"
0 commit comments