Skip to content

split azure functions integration tests in ci#7301

Merged
BridgeAR merged 4 commits intomasterfrom
faster-azure-function-ci
Jan 24, 2026
Merged

split azure functions integration tests in ci#7301
BridgeAR merged 4 commits intomasterfrom
faster-azure-function-ci

Conversation

@rochdev
Copy link
Copy Markdown
Member

@rochdev rochdev commented Jan 21, 2026

What does this PR do?

Split Azure Functions integration tests in CI.

Motivation

The tests are extremely slow and combined can reach 15+ minutes. With this change the time should be cut in half.

@github-actions
Copy link
Copy Markdown
Contributor

github-actions bot commented Jan 21, 2026

Overall package size

Self size: 4.45 MB
Deduped: 5.29 MB
No deduping: 5.29 MB

Dependency sizes | name | version | self size | total size | |------|---------|-----------|------------| | import-in-the-middle | 2.0.3 | 76.87 kB | 808.03 kB | | dc-polyfill | 0.1.10 | 26.73 kB | 26.73 kB |

🤖 This report was automatically generated by heaviest-objects-in-the-universe

@codecov
Copy link
Copy Markdown

codecov bot commented Jan 21, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 86.03%. Comparing base (9deb40b) to head (d7a8d96).
⚠️ Report is 23 commits behind head on master.

Additional details and impacted files
@@            Coverage Diff             @@
##           master    #7301      +/-   ##
==========================================
- Coverage   86.12%   86.03%   -0.09%     
==========================================
  Files         513      513              
  Lines       22106    22219     +113     
==========================================
+ Hits        19039    19117      +78     
- Misses       3067     3102      +35     
Flag Coverage Δ
aiguard-macos 99.09% <ø> (ø)
aiguard-ubuntu 99.09% <ø> (ø)
aiguard-windows 99.09% <ø> (ø)
apm-capabilities-tracing-macos 57.81% <ø> (-0.20%) ⬇️
apm-capabilities-tracing-ubuntu 57.81% <ø> (-0.20%) ⬇️
apm-capabilities-tracing-windows 57.42% <ø> (-0.21%) ⬇️
apm-integrations-child-process 99.19% <ø> (ø)
apm-integrations-couchbase-18 100.00% <ø> (ø)
apm-integrations-couchbase-eol 100.00% <ø> (ø)
appsec-express 62.46% <ø> (ø)
appsec-fastify 58.48% <ø> (ø)
appsec-graphql 53.41% <ø> (ø)
appsec-kafka 43.98% <ø> (ø)
appsec-ldapjs 46.04% <ø> (ø)
appsec-lodash 47.29% <ø> (ø)
appsec-macos 93.74% <ø> (ø)
appsec-mongodb-core 51.82% <ø> (ø)
appsec-mongoose 50.73% <ø> (ø)
appsec-mysql 54.20% <ø> (ø)
appsec-node-serialize 43.92% <ø> (ø)
appsec-passport 48.10% <ø> (ø)
appsec-postgres 54.55% <ø> (ø)
appsec-sourcing 33.80% <ø> (ø)
appsec-template 43.92% <ø> (ø)
appsec-ubuntu 93.74% <ø> (ø)
appsec-windows 93.74% <ø> (ø)
llmobs-ai 51.97% <ø> (-3.35%) ⬇️
llmobs-anthropic 42.62% <ø> (-2.85%) ⬇️
llmobs-bedrock 39.95% <ø> (-2.89%) ⬇️
llmobs-google-genai 45.79% <ø> (-2.95%) ⬇️
llmobs-langchain 50.07% <ø> (-2.24%) ⬇️
llmobs-openai 55.51% <ø> (+0.01%) ⬆️
llmobs-vertex-ai 44.36% <ø> (-3.10%) ⬇️
platform-core 87.23% <ø> (ø)
platform-instrumentations-misc 73.68% <ø> (ø)
platform-shimmer 98.82% <ø> (ø)
platform-unit-guardrails 89.47% <ø> (ø)
profiling-macos 70.74% <ø> (ø)
profiling-ubuntu 70.74% <ø> (ø)
profiling-windows 74.18% <ø> (-1.00%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@datadog-datadog-prod-us1

This comment has been minimized.

@pr-commenter
Copy link
Copy Markdown

pr-commenter bot commented Jan 21, 2026

Benchmarks

Benchmark execution time: 2026-01-22 04:11:51

Comparing candidate commit ec0326b in PR branch faster-azure-function-ci with baseline commit 9deb40b in branch master.

Found 0 performance improvements and 0 performance regressions! Performance is the same for 231 metrics, 29 unstable metrics.

@rochdev rochdev marked this pull request as ready for review January 23, 2026 18:18
@rochdev rochdev requested review from a team as code owners January 23, 2026 18:18
Copy link
Copy Markdown
Member

@BridgeAR BridgeAR left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, just left a nit that is not crucial

let env = {
NODE_OPTIONS: `--loader=${hookFile} func start`,
DD_TRACE_AGENT_PORT: agentPort,
DD_TRACE_AGENT_PORT: agentPort
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: I think it is actually good to keep trailing ports for reducing churn when adding or removing entries.

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess this is something to be changed in the linter at some point.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I definitely agree, but I think right now it's the opposite and there are cases where the linter actively removes the comma. I would be onboard with reverting that to ensuring that it's always there instead 👍

@BridgeAR BridgeAR merged commit 262d4e4 into master Jan 24, 2026
800 checks passed
@BridgeAR BridgeAR deleted the faster-azure-function-ci branch January 24, 2026 15:28
dd-octo-sts bot pushed a commit that referenced this pull request Jan 25, 2026
@dd-octo-sts dd-octo-sts bot mentioned this pull request Jan 25, 2026
dd-octo-sts bot pushed a commit that referenced this pull request Jan 27, 2026
@dd-octo-sts dd-octo-sts bot mentioned this pull request Jan 27, 2026
BridgeAR pushed a commit that referenced this pull request Jan 30, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants