• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

taosdata / TDengine / #5036

28 Apr 2026 02:11PM UTC coverage: 73.055% (-0.005%) from 73.06%
#5036

push

travis-ci

web-flow
func/regexp_extract: new scalar func and test cases (#35191)

46 of 59 new or added lines in 1 file covered. (77.97%)

5784 existing lines in 151 files now uncovered.

276105 of 377940 relevant lines covered (73.06%)

133708549.2 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

82.11
/source/libs/executor/src/querytask.c
1
/*
2
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
3
 *
4
 * This program is free software: you can use, redistribute, and/or modify
5
 * it under the terms of the GNU Affero General Public License, version 3
6
 * or later ("AGPL"), as published by the Free Software Foundation.
7
 *
8
 * This program is distributed in the hope that it will be useful, but WITHOUT
9
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10
 * FITNESS FOR A PARTICULAR PURPOSE.
11
 *
12
 * You should have received a copy of the GNU Affero General Public License
13
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
14
 */
15

16
#include "filter.h"
17
#include "function.h"
18
#include "functionMgt.h"
19
#include "os.h"
20
#include "querynodes.h"
21
#include "tfill.h"
22
#include "tname.h"
23

24
#include "tdatablock.h"
25
#include "tmsg.h"
26
#include "streamMsg.h"
27

28
#include "executorInt.h"
29
#include "index.h"
30
#include "operator.h"
31
#include "query.h"
32
#include "querytask.h"
33
#include "storageapi.h"
34
#include "thash.h"
35
#include "ttypes.h"
36
#include "tref.h"
37

38
#define CLEAR_QUERY_STATUS(q, st) ((q)->status &= (~(st)))
39

40
int32_t doCreateTask(uint64_t queryId, uint64_t taskId, int32_t vgId, EOPTR_EXEC_MODEL model, SStorageAPI* pAPI,
378,712,616✔
41
                     SExecTaskInfo** pTaskInfo) {
42
  if (pTaskInfo == NULL) {
378,712,616✔
43
    return TSDB_CODE_SUCCESS;
×
44
  }
45

46
  SExecTaskInfo* p = taosMemoryCalloc(1, sizeof(SExecTaskInfo));
378,712,616✔
47
  if (p == NULL) {
378,678,283✔
48
    return terrno;
×
49
  }
50

51
  setTaskStatus(p, TASK_NOT_COMPLETED);
378,678,283✔
52
  p->cost.created = taosGetTimestampUs();
378,723,732✔
53

54
  p->execModel = model;
378,715,081✔
55
  p->stopInfo.pStopInfo = taosArrayInit(4, sizeof(SExchangeOpStopInfo));
378,721,914✔
56
  p->pResultBlockList = taosArrayInit(128, POINTER_BYTES);
378,686,525✔
57
  if (p->stopInfo.pStopInfo == NULL || p->pResultBlockList == NULL) {
378,677,341✔
58
    doDestroyTask(p);
338✔
59
    return terrno;
×
60
  }
61

62
  p->storageAPI = *pAPI;
378,699,573✔
63
  taosInitRWLatch(&p->lock);
378,721,869✔
64

65
  p->id.vgId = vgId;
378,695,918✔
66
  p->id.queryId = queryId;
378,693,019✔
67
  p->id.taskId = taskId;
378,708,942✔
68
  p->id.str = taosMemoryMalloc(64);
378,709,137✔
69
  if (p->id.str == NULL) {
378,669,948✔
70
    doDestroyTask(p);
×
71
    return terrno;
×
72
  }
73

74
  buildTaskId(taskId, queryId, p->id.str, 64);
378,686,845✔
75
  p->schemaInfos = taosArrayInit(1, sizeof(SSchemaInfo));
378,668,739✔
76
  if (p->id.str == NULL || p->schemaInfos == NULL) {
378,634,837✔
77
    doDestroyTask(p);
77✔
78
    return terrno;
×
79
  }
80

81
  *pTaskInfo = p;
378,679,001✔
82
  return TSDB_CODE_SUCCESS;
378,683,804✔
83
}
84

85
int32_t getTaskCode(void* pTaskInfo) { return ((SExecTaskInfo*)pTaskInfo)->code; }
18,464✔
86

87
bool isTaskKilled(void* pTaskInfo) { return (0 != ((SExecTaskInfo*)pTaskInfo)->code); }
2,147,483,647✔
88

89
void setTaskKilled(SExecTaskInfo* pTaskInfo, int32_t rspCode) {
81,944✔
90
  pTaskInfo->code = rspCode;
81,944✔
91
  (void)stopTableScanOperator(pTaskInfo->pRoot, pTaskInfo->id.str, &pTaskInfo->storageAPI);
81,944✔
92
}
81,944✔
93

94
void setTaskStatus(SExecTaskInfo* pTaskInfo, int8_t status) {
1,303,503,455✔
95
  if (status == TASK_NOT_COMPLETED) {
1,303,503,455✔
96
    pTaskInfo->status = status;
378,879,442✔
97
  } else {
98
    // QUERY_NOT_COMPLETED is not compatible with any other status, so clear its position first
99
    CLEAR_QUERY_STATUS(pTaskInfo, TASK_NOT_COMPLETED);
924,624,013✔
100
    pTaskInfo->status |= status;
924,647,702✔
101
  }
102
}
1,303,536,332✔
103

104

105
int32_t initTaskSubJobCtx(SExecTaskInfo* pTaskInfo, SArray** subEndPoints, SReadHandle* readHandle) {
43,421,149✔
106
  int32_t code = 0, lino = 0;
43,421,149✔
107
  int32_t subJobNum = taosArrayGetSize(*subEndPoints);
43,421,149✔
108
  
109
  pTaskInfo->pSubJobCtx = taosMemoryCalloc(1, sizeof(*pTaskInfo->pSubJobCtx));
43,418,830✔
110
  TSDB_CHECK_NULL(pTaskInfo->pSubJobCtx, code, lino, _exit, terrno);
43,415,978✔
111
  
112
  STaskSubJobCtx* ctx = pTaskInfo->pSubJobCtx;
43,413,659✔
113

114
  ctx->queryId = pTaskInfo->id.queryId;
43,419,995✔
115
  ctx->taskId = pTaskInfo->id.taskId;
43,420,572✔
116
  ctx->idStr = pTaskInfo->id.str;
43,416,555✔
117
  ctx->pTaskInfo = pTaskInfo;
43,424,001✔
118
  ctx->subEndPoints = *subEndPoints;
43,419,429✔
119
  ctx->rpcHandle = (readHandle && readHandle->pMsgCb) ? readHandle->pMsgCb->clientRpc : NULL;
43,419,973✔
120
  ctx->isStream = pTaskInfo && IS_STREAM_MODE(pTaskInfo);
43,423,446✔
121

122
  *subEndPoints = NULL;
43,422,270✔
123
  
124
  ctx->subResNodes = taosArrayInit_s(POINTER_BYTES, subJobNum);
43,424,023✔
125
  if (NULL == ctx->subResNodes) {
43,416,544✔
126
    qError("%s taosArrayInit_s %d subResNodes failed, error:%s", GET_TASKID(pTaskInfo), subJobNum, tstrerror(terrno));
×
127
    TSDB_CHECK_NULL(ctx->subResNodes, code, lino, _exit, terrno);
×
128
  }
129
  
130
  TAOS_CHECK_EXIT(tsem_init(&ctx->ready, 0, 0));
43,414,813✔
131

132
  int64_t refId = taosAddRef(fetchObjRefPool, ctx);
43,419,984✔
133
  if (refId < 0) {
43,421,127✔
134
    qError("%s failed at line %d since %s", __func__, __LINE__, tstrerror(terrno));
×
135
    TAOS_CHECK_EXIT(terrno);
×
136
  }
137
  
138
  ctx->subJobRefId = refId;
43,421,127✔
139

140
  qDebug("%s subJobCtx %" PRIu64 " with %d endPoints inited", pTaskInfo->id.str, (uint64_t)refId, (int32_t)taosArrayGetSize(ctx->subEndPoints));
43,415,956✔
141

142
_exit:
42,353,750✔
143

144
  if (code) {
43,415,357✔
145
    destroySubJobCtx(pTaskInfo->pSubJobCtx);
×
146
    pTaskInfo->pSubJobCtx = NULL;
×
147
    
148
    qError("%s failed at line %d since %s", __func__, lino, tstrerror(code));
×
149
  }
150

151
  return code;
43,419,396✔
152
}
153

154

155

156
int32_t createExecTaskInfo(SSubplan* pPlan, SExecTaskInfo** pTaskInfo, SReadHandle* pHandle, uint64_t taskId,
378,573,590✔
157
                           int32_t vgId, char* sql, EOPTR_EXEC_MODEL model, SArray** subEndPoints, bool enableExplain) {
158
  int32_t code = doCreateTask(pPlan->id.queryId, taskId, vgId, model, &pHandle->api, pTaskInfo);
378,573,590✔
159
  if (*pTaskInfo == NULL || code != 0) {
378,520,955✔
UNCOV
160
    nodesDestroyNode((SNode*)pPlan);
×
161
    return code;
×
162
  }
163

164
  (*pTaskInfo)->pSubplan = pPlan;
378,552,265✔
165

166
  if (NULL != sql) {
378,550,248✔
167
    (*pTaskInfo)->sql = taosStrdup(sql);
352,265,919✔
168
    if (NULL == (*pTaskInfo)->sql) {
352,270,066✔
169
      code = terrno;
×
170
      doDestroyTask(*pTaskInfo);
×
171
      (*pTaskInfo) = NULL;
×
172
      return code;
×
173
    }
174
  }
175

176
  (*pTaskInfo)->pWorkerCb = pHandle->pWorkerCb;
378,545,604✔
177
  (*pTaskInfo)->pStreamRuntimeInfo = pHandle->streamRtInfo;
378,540,799✔
178
  (*pTaskInfo)->enableExplain = enableExplain;
378,553,639✔
179

180
  if (subEndPoints && taosArrayGetSize(*subEndPoints) > 0) {
378,491,243✔
181
    code = initTaskSubJobCtx(*pTaskInfo, subEndPoints, pHandle);
43,422,869✔
182
    if (code != TSDB_CODE_SUCCESS) {
43,420,550✔
183
      doDestroyTask(*pTaskInfo);
×
184
      (*pTaskInfo) = NULL;
×
185
      return code;
×
186
    }
187
  }
188
  
189
  setTaskScalarExtraInfo(*pTaskInfo);
378,455,870✔
190
  
191
  code = createOperator(pPlan->pNode, *pTaskInfo, pHandle, pPlan->pTagCond, pPlan->pTagIndexCond, pPlan->user,
378,463,454✔
192
                        pPlan->dbFName, &((*pTaskInfo)->pRoot), model);
378,337,497✔
193

194
  if (NULL == (*pTaskInfo)->pRoot || code != 0) {
378,373,027✔
195
    doDestroyTask(*pTaskInfo);
465,495✔
196
    (*pTaskInfo) = NULL;
495,657✔
197
  }
198
  return code;
378,438,320✔
199
}
200

201
void cleanupQueriedTableScanInfo(void* p) {
280,453,223✔
202
  SSchemaInfo* pSchemaInfo = p;
280,453,223✔
203

204
  taosMemoryFreeClear(pSchemaInfo->dbname);
280,453,223✔
205
  taosMemoryFreeClear(pSchemaInfo->tablename);
280,436,484✔
206
  tDeleteSchemaWrapper(pSchemaInfo->sw);
280,381,015✔
207
  tDeleteSchemaWrapper(pSchemaInfo->qsw);
280,389,865✔
208
}
280,373,291✔
209

210
int32_t initQueriedTableSchemaInfo(SReadHandle* pHandle, SScanPhysiNode* pScanNode, const char* dbName,
280,485,760✔
211
                                   SExecTaskInfo* pTaskInfo) {
212
  SMetaReader mr = {0};
280,485,760✔
213
  if (pHandle == NULL) {
280,488,612✔
214
    return TSDB_CODE_INVALID_PARA;
×
215
  }
216

217
  SStorageAPI* pAPI = &pTaskInfo->storageAPI;
280,488,612✔
218

219
  pAPI->metaReaderFn.initReader(&mr, pHandle->vnode, META_READER_LOCK, &pAPI->metaFn);
280,484,960✔
220
  int32_t code = pAPI->metaReaderFn.getEntryGetUidCache(&mr, pScanNode->uid);
280,488,234✔
221
  if (code != TSDB_CODE_SUCCESS) {
280,302,538✔
222
    qError("failed to get the table meta, uid:0x%" PRIx64 ", suid:0x%" PRIx64 ", %s", pScanNode->uid, pScanNode->suid,
×
223
           GET_TASKID(pTaskInfo));
224

225
    pAPI->metaReaderFn.clearReader(&mr);
×
226
    return code;
×
227
  }
228

229
  SSchemaInfo schemaInfo = {0};
280,302,538✔
230

231
  schemaInfo.tablename = taosStrdup(mr.me.name);
280,350,860✔
232
  schemaInfo.dbname = taosStrdup(dbName);
280,336,249✔
233
  if (schemaInfo.tablename == NULL || schemaInfo.dbname == NULL) {
280,382,350✔
234
    pAPI->metaReaderFn.clearReader(&mr);
111,618✔
235
    cleanupQueriedTableScanInfo(&schemaInfo);
×
236
    return terrno;
×
237
  }
238

239
  if (mr.me.type == TSDB_VIRTUAL_NORMAL_TABLE || mr.me.type == TSDB_VIRTUAL_CHILD_TABLE) {
280,270,732✔
240
    schemaInfo.rversion = mr.me.colRef.version;
310,226✔
241
  }
242

243
  if (mr.me.type == TSDB_SUPER_TABLE) {
280,270,732✔
244
    schemaInfo.sw = tCloneSSchemaWrapper(&mr.me.stbEntry.schemaRow);
122,577,697✔
245
    schemaInfo.tversion = mr.me.stbEntry.schemaTag.version;
122,577,697✔
246
  } else if (mr.me.type == TSDB_CHILD_TABLE || mr.me.type == TSDB_VIRTUAL_CHILD_TABLE) {
157,720,119✔
247
    tDecoderClear(&mr.coder);
111,326,613✔
248

249
    tb_uid_t suid = mr.me.ctbEntry.suid;
111,391,146✔
250
    code = pAPI->metaReaderFn.getEntryGetUidCache(&mr, suid);
111,391,146✔
251
    if (code != TSDB_CODE_SUCCESS) {
111,393,085✔
252
      pAPI->metaReaderFn.clearReader(&mr);
×
253
      cleanupQueriedTableScanInfo(&schemaInfo);
×
254
      return code;
×
255
    }
256

257
    schemaInfo.sw = tCloneSSchemaWrapper(&mr.me.stbEntry.schemaRow);
111,391,510✔
258
    schemaInfo.tversion = mr.me.stbEntry.schemaTag.version;
111,391,510✔
259
  } else {
260
    schemaInfo.sw = tCloneSSchemaWrapper(&mr.me.ntbEntry.schemaRow);
46,387,959✔
261
  }
262

263
  pAPI->metaReaderFn.clearReader(&mr);
280,357,166✔
264

265
  if (schemaInfo.sw == NULL) {
280,254,096✔
266
    cleanupQueriedTableScanInfo(&schemaInfo);
×
267
    return terrno;
×
268
  }
269

270
  schemaInfo.qsw = extractQueriedColumnSchema(pScanNode);
280,254,096✔
271
  if (schemaInfo.qsw == NULL) {
280,330,488✔
272
    cleanupQueriedTableScanInfo(&schemaInfo);
×
273
    return terrno;
×
274
  }
275

276
  void* p = taosArrayPush(pTaskInfo->schemaInfos, &schemaInfo);
280,330,488✔
277
  if (p == NULL) {
280,399,431✔
278
    cleanupQueriedTableScanInfo(&schemaInfo);
×
279
    return terrno;
×
280
  }
281

282
  return code;
280,399,431✔
283
}
284

285
SSchemaWrapper* extractQueriedColumnSchema(SScanPhysiNode* pScanNode) {
280,328,669✔
286
  int32_t numOfCols = LIST_LENGTH(pScanNode->pScanCols);
280,328,669✔
287
  int32_t numOfTags = LIST_LENGTH(pScanNode->pScanPseudoCols);
280,408,239✔
288

289
  SSchemaWrapper* pqSw = taosMemoryCalloc(1, sizeof(SSchemaWrapper));
280,359,727✔
290
  if (pqSw == NULL) {
280,240,611✔
291
    return NULL;
×
292
  }
293

294
  pqSw->pSchema = taosMemoryCalloc(numOfCols + numOfTags, sizeof(SSchema));
280,240,611✔
295
  if (pqSw->pSchema == NULL) {
280,128,391✔
296
    taosMemoryFree(pqSw);
×
297
    return NULL;
×
298
  }
299

300
  for (int32_t i = 0; i < numOfCols; ++i) {
1,267,286,701✔
301
    STargetNode* pNode = (STargetNode*)nodesListGetNode(pScanNode->pScanCols, i);
986,876,187✔
302
    SColumnNode* pColNode = (SColumnNode*)pNode->pExpr;
986,774,696✔
303

304
    SSchema* pSchema = &pqSw->pSchema[pqSw->nCols++];
986,821,676✔
305
    pSchema->colId = pColNode->colId;
986,845,353✔
306
    pSchema->type = pColNode->node.resType.type;
986,974,429✔
307
    pSchema->bytes = pColNode->node.resType.bytes;
986,911,590✔
308
    tstrncpy(pSchema->name, pColNode->colName, tListLen(pSchema->name));
987,049,101✔
309
  }
310

311
  // this the tags and pseudo function columns, we only keep the tag columns
312
  for (int32_t i = 0; i < numOfTags; ++i) {
473,615,070✔
313
    STargetNode* pNode = (STargetNode*)nodesListGetNode(pScanNode->pScanPseudoCols, i);
193,211,103✔
314

315
    int32_t type = nodeType(pNode->pExpr);
193,160,636✔
316
    if (type == QUERY_NODE_COLUMN) {
193,179,806✔
317
      SColumnNode* pColNode = (SColumnNode*)pNode->pExpr;
148,644,620✔
318

319
      SSchema* pSchema = &pqSw->pSchema[pqSw->nCols++];
148,651,510✔
320
      pSchema->colId = pColNode->colId;
148,689,489✔
321
      pSchema->type = pColNode->node.resType.type;
148,636,017✔
322
      pSchema->bytes = pColNode->node.resType.bytes;
148,661,192✔
323
      tstrncpy(pSchema->name, pColNode->colName, tListLen(pSchema->name));
148,631,404✔
324
    }
325
  }
326

327
  return pqSw;
280,403,967✔
328
}
329

330
static void cleanupTmqInfo(STmqTaskInfo* pTmqInfo) {
378,630,917✔
331
  tDeleteSchemaWrapper(pTmqInfo->schema);
378,630,917✔
332
  tOffsetDestroy(&pTmqInfo->currentOffset);
378,667,236✔
333
}
378,613,311✔
334

335
static void freeBlock(void* pParam) {
663,661,567✔
336
  SSDataBlock* pBlock = *(SSDataBlock**)pParam;
663,661,567✔
337
  blockDataDestroy(pBlock);
663,668,447✔
338
}
663,650,864✔
339

340

341
void destroySubJobCtx(STaskSubJobCtx* pCtx) {
43,421,704✔
342
  if (pCtx->transporterId > 0) {
43,421,704✔
343
    int32_t ret = asyncFreeConnById(pCtx->rpcHandle, pCtx->transporterId);
4,616✔
344
    if (ret != 0) {
4,616✔
345
      qDebug("%s failed to free subQ rpc handle, code:%s", pCtx->idStr, tstrerror(ret));
×
346
    }
347
    pCtx->transporterId = -1;
4,616✔
348
  }
349

350
  if (pCtx->subEndPoints != NULL) {
43,424,578✔
351
    size_t size = taosArrayGetSize(pCtx->subEndPoints);
43,422,847✔
352
    if (size > 0) {
43,420,561✔
353
      int32_t code = tsem_destroy(&pCtx->ready);
43,421,138✔
354
      if (code != TSDB_CODE_SUCCESS) {
43,421,715✔
355
        qError("%s failed at line %d since %s", __func__, __LINE__, tstrerror(code));
×
356
      }
357
      taosArrayDestroy(pCtx->subResNodes);
43,421,715✔
358
    }
359
    if (pCtx->isStream) {
43,416,511✔
360
      taosArrayDestroyP(pCtx->subEndPoints, (FDelete)nodesDestroyNode);
171,084✔
361
    } else {
362
      taosArrayDestroyP(pCtx->subEndPoints, NULL);
43,246,004✔
363
    }
364
    pCtx->subEndPoints = NULL;
43,418,841✔
365
  }
366
  
367
  taosMemoryFreeClear(pCtx);  
43,419,418✔
368
}
43,415,368✔
369

370
void doDestroyTask(SExecTaskInfo* pTaskInfo) {
378,710,940✔
371
  qDebug("%s execTask is freed", GET_TASKID(pTaskInfo));
378,710,940✔
372
  destroyOperator(pTaskInfo->pRoot);
378,708,936✔
373
  pTaskInfo->pRoot = NULL;
378,640,040✔
374

375
  if (pTaskInfo->pSubJobCtx) {
378,650,051✔
376
    int32_t  code = taosRemoveRef(fetchObjRefPool, pTaskInfo->pSubJobCtx->subJobRefId);
43,421,704✔
377
    if (code != TSDB_CODE_SUCCESS) {
43,421,704✔
378
      qError("%s failed at line %d since %s", __func__, __LINE__, tstrerror(code));
×
379
    }
380
  }
381

382
  taosArrayDestroyEx(pTaskInfo->schemaInfos, cleanupQueriedTableScanInfo);
378,677,197✔
383
  cleanupTmqInfo(&pTaskInfo->tmqInfo);
378,624,203✔
384

385
  if (!pTaskInfo->localFetch.localExec) {
378,611,421✔
386
    nodesDestroyNode((SNode*)pTaskInfo->pSubplan);
378,619,438✔
387
    pTaskInfo->pSubplan = NULL;
378,637,322✔
388
  }
389

390
  taosArrayDestroyEx(pTaskInfo->pResultBlockList, freeBlock);
378,667,811✔
391
  taosArrayDestroy(pTaskInfo->stopInfo.pStopInfo);
378,649,155✔
392
  if (!pTaskInfo->paramSet) {
378,651,552✔
393
    freeOperatorParam(pTaskInfo->pOpParam, OP_GET_PARAM);
370,679,883✔
394
    pTaskInfo->pOpParam = NULL;
370,643,675✔
395
  }
396
  if (pTaskInfo->ownStreamRtInfo && pTaskInfo->pStreamRuntimeInfo != NULL) {
378,616,327✔
397
    SStreamRuntimeFuncInfo* pRt = &pTaskInfo->pStreamRuntimeInfo->funcInfo;
530,124✔
398

399
    // When isMultiGroupCalc, pStreamPesudoFuncVals is aliased to curGrpCalc->pParams
400
    // inside pGroupCalcInfos.  NULL it out so tDestroyStRtFuncInfo won't free it twice.
401
    if (pRt->isMultiGroupCalc && pRt->pGroupCalcInfos != NULL) {
530,124✔
402
      pRt->pStreamPesudoFuncVals = NULL;
72,732✔
403
      pRt->pStreamPartColVals = NULL;
72,732✔
404
    }
405
    tDestroyStRtFuncInfo(pRt);
530,124✔
406
    taosMemoryFreeClear(pTaskInfo->pStreamRuntimeInfo);
530,124✔
407
  }
408
  taosMemoryFreeClear(pTaskInfo->sql);
378,678,151✔
409
  taosMemoryFreeClear(pTaskInfo->id.str);
378,637,888✔
410
  taosMemoryFreeClear(pTaskInfo);
378,622,811✔
411
}
378,575,207✔
412

413
void buildTaskId(uint64_t taskId, uint64_t queryId, char* dst, int32_t len) {
573,454,355✔
414
  int32_t ret = snprintf(dst, len, "TID:0x%" PRIx64 " QID:0x%" PRIx64, taskId, queryId);
573,454,355✔
415
  if (ret < 0) {
573,454,355✔
416
    qError("TID:0x%"PRIx64" QID:0x%"PRIx64" create task id failed,  ignore and continue", taskId, queryId);
×
417
  }
418
}
573,454,355✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc