Update test framework: fix run_tests.py to support all test files, add auto-import-check for test files

This commit is contained in:
qiaoxinjiu
2026-05-09 15:11:30 +08:00
parent eb053a347f
commit eaba8328da
21739 changed files with 2236758 additions and 719 deletions

36
node_modules/tdigest/package.json generated vendored Normal file
View File

@@ -0,0 +1,36 @@
{
"name": "tdigest",
"version": "0.1.2",
"description": "javascript implementation of Dunning's T-Digest for streaming quantile approximation",
"main": "tdigest.js",
"scripts": {
"test": "mocha specs"
},
"repository": {
"type": "git",
"url": "https://github.com/welch/tdigest.git"
},
"keywords": [
"tdigest",
"percentile",
"quantile",
"histogram",
"approximation"
],
"author": "Will Welch <welch@quietplease.com> (http://quietplease.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/welch/tdigest/issues"
},
"homepage": "https://github.com/welch/tdigest",
"dependencies": {
"bintrees": "1.0.2"
},
"devDependencies": {
"better-assert": "^1.0.2",
"chai": "^3.0.0",
"grunt": "^0.4.5",
"grunt-pure-cjs": "^1.4.0",
"mocha": "^2.1.0"
}
}