mirror of
https://github.com/nox-project/nox-framework.git
synced 2026-06-08 16:07:17 +00:00
release: v1.0.4
This commit is contained in:
@@ -26,6 +26,9 @@
|
||||
"health_check_url": "https://hashlookup.circl.lu",
|
||||
"expected_status": 200,
|
||||
"reliability_score": 5,
|
||||
"backup_endpoints": [],
|
||||
"backup_endpoints": [
|
||||
"https://hashlookup.circl.lu/lookup/sha1/{target}",
|
||||
"https://hashlookup.circl.lu/lookup/sha256/{target}"
|
||||
],
|
||||
"confidence": 1.0
|
||||
}
|
||||
+3
-2
@@ -25,7 +25,8 @@
|
||||
],
|
||||
"health_check_url": "https://crt.sh",
|
||||
"expected_status": 200,
|
||||
"reliability_score": 5,
|
||||
"reliability_score": 3,
|
||||
"is_volatile": true,
|
||||
"backup_endpoints": [],
|
||||
"confidence": 1.0
|
||||
"confidence": 0.7
|
||||
}
|
||||
@@ -228,7 +228,8 @@ class ConfigManager:
|
||||
return cls._cache[key_name]
|
||||
val = os.environ.get(key_name, "") or cls._get_store().get(key_name, "")
|
||||
result = None if (not val or val == UNIVERSAL_PLACEHOLDER) else val
|
||||
cls._cache[key_name] = result
|
||||
if result is not None:
|
||||
cls._cache[key_name] = result
|
||||
return result
|
||||
|
||||
# Backward-compatible alias used by nox.py internals
|
||||
|
||||
@@ -14,9 +14,9 @@ from typing import Any, Dict, List
|
||||
# ── Noise patterns stripped from all report output ────────────────────
|
||||
_NOISE_RE = re.compile(
|
||||
r"(Traceback \(most recent|File \".*\.py\"|TimeoutError|ProxyError"
|
||||
r"|ConnectionError|aiohttp\.|ClientConnector|ssl\.|asyncio\."
|
||||
r"|Task exception|NoneType|Object of type)",
|
||||
re.I,
|
||||
r"|ConnectionError|ClientConnector|Task exception|NoneType|Object of type"
|
||||
r"|(?:^|[\s(])aiohttp\.|(?:^|[\s(])asyncio\.|(?:^|[\s(])ssl\.)",
|
||||
re.I | re.MULTILINE,
|
||||
)
|
||||
_CTRL_RE = re.compile(r"[\x00-\x08\x0b\x0c\x0e-\x1f\x7f-\x9f]")
|
||||
|
||||
|
||||
@@ -227,6 +227,7 @@ class AvalancheScanner:
|
||||
finally:
|
||||
if not fut.done():
|
||||
fut.set_result(None)
|
||||
self._in_flight.pop(key, None)
|
||||
|
||||
# ── Core pipeline ─────────────────────────────────────────────────
|
||||
|
||||
|
||||
Reference in New Issue
Block a user