rspec_trunk_flaky_tests 0.10.10-arm64-darwin → 0.11.8.pre.beta.3-arm64-darwin

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 72c4348a557554c19445e8453e64e283e27f3113d5558733561f2443d3068f32
4
- data.tar.gz: 0d9897eb569818340a4f6ea76b5698cf31fc64a246d704fa33442ca56b4fe761
3
+ metadata.gz: ad1ace380a9642871295fbbf86285dfd5217efca7384723ead3004dd9fff47d7
4
+ data.tar.gz: 95c936db12471a487d05cfb37c5d2256b79ec59931c459b2c0bd9d67fc745509
5
5
  SHA512:
6
- metadata.gz: d5d8a827d4b6ade7b3bd40017829e905f07bb84df62f079b2ef436c6c85d9362829bf85df595f82380239021213f2d0938a37116736f193cfcd8981c5680025a
7
- data.tar.gz: '0970a2266fc08bf46400b2bb62b0dd4c9b5c226de415d606c886e637714ef50ab0800629257df4c7a0083b33458dd31494aa8e828cf4f8aa76cbebfebfaefb5f'
6
+ metadata.gz: 8de1a568cdaa96b24fd68b2bc9c2bce6860d3c70b551f7793085e804e61eebe8ee2bc0d3a82dec6e78998edd42289641788474d4621915f3e51c4ddec665fd4f
7
+ data.tar.gz: b256dfd9f8946d01ef9d8934e8138a30daf8d34372212fd30d119e6a5dfc9cbd04eea6714063f978a5ba20a0ad4f3d6367acbe35d41fd04961726d3e36731df3
@@ -1,5 +1,32 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ # Trunk RSpec Helper
4
+ #
5
+ # This helper integrates Trunk Flaky Tests with RSpec to automatically
6
+ # quarantine flaky tests and upload test results.
7
+ #
8
+ # Required environment variables:
9
+ # TRUNK_ORG_URL_SLUG - Your organization's URL slug
10
+ # TRUNK_API_TOKEN - Your API token for authentication
11
+ #
12
+ # Optional environment variables for repository metadata:
13
+ # TRUNK_REPO_ROOT - Path to repository root
14
+ # TRUNK_REPO_URL - Repository URL (e.g., https://github.com/org/repo.git)
15
+ # TRUNK_REPO_HEAD_SHA - HEAD commit SHA
16
+ # TRUNK_REPO_HEAD_BRANCH - HEAD branch name
17
+ # TRUNK_REPO_HEAD_COMMIT_EPOCH - HEAD commit timestamp (seconds since epoch)
18
+ # TRUNK_REPO_HEAD_AUTHOR_NAME - HEAD commit author name
19
+ #
20
+ # Optional environment variables for configuration:
21
+ # TRUNK_CODEOWNERS_PATH - Path to CODEOWNERS file
22
+ # TRUNK_VARIANT - Variant name for test results (e.g., 'linux', 'pr-123')
23
+ # TRUNK_DISABLE_QUARANTINING - Set to 'true' to disable quarantining
24
+ # TRUNK_ALLOW_EMPTY_TEST_RESULTS - Set to 'true' to allow empty results
25
+ # TRUNK_DRY_RUN - Set to 'true' to save bundle locally instead of uploading
26
+ # TRUNK_USE_UNCLONED_REPO - Set to 'true' for uncloned repo mode
27
+ # TRUNK_LOCAL_UPLOAD_DIR - Directory to save test results locally (disables upload)
28
+ # DISABLE_RSPEC_TRUNK_FLAKY_TESTS - Set to 'true' to completely disable Trunk
29
+ #
3
30
  require 'rspec/core'
4
31
  require 'time'
5
32
  require 'context_ruby'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec_trunk_flaky_tests
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.10
4
+ version: 0.11.8.pre.beta.3
5
5
  platform: arm64-darwin
6
6
  authors:
7
7
  - Trunk Technologies, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-09-02 00:00:00.000000000 Z
11
+ date: 2025-11-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec-core
@@ -38,7 +38,9 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
- description:
41
+ description: Integrates RSpec with Trunk Flaky Tests to automatically upload test
42
+ results from your CI jobs. Enables accurate flaky test detection, quarantining,
43
+ and analytics.
42
44
  email: support@trunk.io
43
45
  executables: []
44
46
  extensions: []
@@ -51,7 +53,7 @@ files:
51
53
  - lib/context_ruby/3.3/context_ruby.bundle
52
54
  - lib/context_ruby/3.4/context_ruby.bundle
53
55
  - lib/trunk_spec_helper.rb
54
- homepage: https://trunk.io
56
+ homepage: https://docs.trunk.io/flaky-tests/get-started/frameworks/rspec
55
57
  licenses:
56
58
  - MIT
57
59
  metadata: {}
@@ -76,5 +78,6 @@ requirements: []
76
78
  rubygems_version: 3.5.23
77
79
  signing_key:
78
80
  specification_version: 4
79
- summary: Trunk Flaky Tests helper gem
81
+ summary: RSpec plugin for Trunk Flaky Tests - automatically uploads test results to
82
+ detect and quarantine flaky tests
80
83
  test_files: []