Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit d8de5e4

Browse files
deps: update shared (#1141)
1 parent 206cd11 commit d8de5e4

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,4 +83,4 @@ dev-dependencies = [
8383
[tool.uv.sources]
8484
timestring = { git = "https://github.com/codecov/timestring", rev = "d37ceacc5954dff3b5bd2f887936a98a668dda42" }
8585
test-results-parser = { git = "https://github.com/codecov/test-results-parser", rev = "190bbc8a911099749928e13d5fe57f6027ca1e74" }
86-
shared = { git = "https://github.com/codecov/shared", rev = "284b92c74f0bc7ca5c4f6f139f3b26fe64fe9c1a" }
86+
shared = { git = "https://github.com/codecov/shared", rev = "e30c1c7e3ff9c4527986d5bb67ae628dc1a18abb" }

services/test_analytics/utils.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@
44

55
def should_use_timeseries(repoid: int) -> bool:
66
timeseries_enabled = get_config("setup", "timeseries", "enabled", default=False)
7-
test_analytics_database_enabled = get_config(
8-
"setup", "test_analytics_database", "enabled", default=False
9-
)
10-
if timeseries_enabled and test_analytics_database_enabled:
7+
if timeseries_enabled:
118
return True
129
return False
1310

0 commit comments

Comments
 (0)