datadog-ci 1.29.0 → 1.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -2
- data/lib/datadog/ci/ext/test.rb +1 -0
- data/lib/datadog/ci/test_session.rb +2 -10
- data/lib/datadog/ci/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 129bc549b30318587b435c3836517faa058dac0860f07eca408fc5562186e52f
|
|
4
|
+
data.tar.gz: 4a8c2756b9c846a4b5b225c51e0d1b3910e24c550f60adce4b47f968981a2b8d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ee1ceadbb2c83d09c780bfe517d52dd4a55b5a4a4dc6802fea1e653fe06b308e7eda9a90a420c1ff855b59b27a7ada8253f319f55664ade19cceb5cab79e3c60
|
|
7
|
+
data.tar.gz: f297af41a17c77ef5c123ad71a79e92a489218bea1b081d802f414a8496fe7e7ca4da50cde169c290ea3a6c0b189a3987f88f07cdf54bb4c822958527ac26117
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
+
## [1.30.0] - 2026-05-12
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
* Propagate ITR test skipping enabled tag to all event levels for test parallelization ([#506][])
|
|
7
|
+
|
|
3
8
|
## [1.29.0] - 2026-05-04
|
|
4
9
|
|
|
5
10
|
### Added
|
|
@@ -629,7 +634,8 @@ Currently test suite level visibility is not used by our instrumentation: it wil
|
|
|
629
634
|
|
|
630
635
|
- Ruby versions < 2.7 no longer supported ([#8][])
|
|
631
636
|
|
|
632
|
-
[Unreleased]: https://github.com/DataDog/datadog-ci-rb/compare/v1.
|
|
637
|
+
[Unreleased]: https://github.com/DataDog/datadog-ci-rb/compare/v1.30.0...main
|
|
638
|
+
[1.30.0]: https://github.com/DataDog/datadog-ci-rb/compare/v1.29.0...v1.30.0
|
|
633
639
|
[1.29.0]: https://github.com/DataDog/datadog-ci-rb/compare/v1.28.0...v1.29.0
|
|
634
640
|
[1.28.0]: https://github.com/DataDog/datadog-ci-rb/compare/v1.27.0...v1.28.0
|
|
635
641
|
[1.27.0]: https://github.com/DataDog/datadog-ci-rb/compare/v1.26.0...v1.27.0
|
|
@@ -891,4 +897,5 @@ Currently test suite level visibility is not used by our instrumentation: it wil
|
|
|
891
897
|
[#498]: https://github.com/DataDog/datadog-ci-rb/issues/498
|
|
892
898
|
[#499]: https://github.com/DataDog/datadog-ci-rb/issues/499
|
|
893
899
|
[#500]: https://github.com/DataDog/datadog-ci-rb/issues/500
|
|
894
|
-
[#501]: https://github.com/DataDog/datadog-ci-rb/issues/501
|
|
900
|
+
[#501]: https://github.com/DataDog/datadog-ci-rb/issues/501
|
|
901
|
+
[#506]: https://github.com/DataDog/datadog-ci-rb/issues/506
|
data/lib/datadog/ci/ext/test.rb
CHANGED
|
@@ -154,6 +154,7 @@ module Datadog
|
|
|
154
154
|
INHERITABLE_TAGS = [
|
|
155
155
|
TAG_FRAMEWORK,
|
|
156
156
|
TAG_FRAMEWORK_VERSION,
|
|
157
|
+
TAG_ITR_TEST_SKIPPING_ENABLED,
|
|
157
158
|
LibraryConfigurationError::TAG_SETTINGS,
|
|
158
159
|
LibraryConfigurationError::TAG_SKIPPABLE_TESTS,
|
|
159
160
|
LibraryConfigurationError::TAG_KNOWN_TESTS,
|
|
@@ -57,20 +57,12 @@ module Datadog
|
|
|
57
57
|
# Return the test session tags that could be inherited by sub-spans
|
|
58
58
|
# @return [Hash] the tags to be inherited by sub-spans.
|
|
59
59
|
def inheritable_tags
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
# this method is not synchronized because it does not iterate over the tags collection, but rather
|
|
63
|
-
# uses synchronized method #get_tag to get each tag value
|
|
64
|
-
res = {}
|
|
65
|
-
Ext::Test::INHERITABLE_TAGS.each do |tag|
|
|
60
|
+
Ext::Test::INHERITABLE_TAGS.each_with_object({}) do |tag, res|
|
|
66
61
|
value = get_tag(tag)
|
|
67
62
|
# skip tags that are not set on the session (e.g. library configuration error tags
|
|
68
63
|
# are only set when the corresponding backend request fails)
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
res[tag] = value
|
|
64
|
+
res[tag] = value unless value.nil?
|
|
72
65
|
end
|
|
73
|
-
@inheritable_tags = res.freeze
|
|
74
66
|
end
|
|
75
67
|
end
|
|
76
68
|
end
|
data/lib/datadog/ci/version.rb
CHANGED