Skip to content

Commit 556b113

Browse files
authored
Merge branch 'master' into dependabot/github_actions/actions/checkout-4.2.2
2 parents d77051c + 5badf77 commit 556b113

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+676
-39
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,15 @@ on:
1717
- master
1818
- sentry-sdk-2.0
1919
pull_request:
20-
# The branches below must be a subset of the branches above
21-
branches:
22-
- master
23-
- sentry-sdk-2.0
2420
schedule:
2521
- cron: '18 18 * * 3'
2622

23+
# Cancel in progress workflows on pull_requests.
24+
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value
25+
concurrency:
26+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
27+
cancel-in-progress: true
28+
2729
permissions:
2830
contents: read
2931

.github/workflows/enforce-license-compliance.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ on:
88
- release/*
99
- sentry-sdk-2.0
1010
pull_request:
11-
branches:
12-
- master
13-
- main
14-
- sentry-sdk-2.0
11+
12+
# Cancel in progress workflows on pull_requests.
13+
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value
14+
concurrency:
15+
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
1516

1617
jobs:
1718
enforce-license-compliance:

.github/workflows/test-integrations-ai.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ jobs:
165165
files: .junitxml
166166
verbose: true
167167
check_required_tests:
168-
name: All AI tests passed
168+
name: All pinned AI tests passed
169169
needs: test-ai-pinned
170170
# Always run this, even if a dependent job failed
171171
if: always()

.github/workflows/test-integrations-aws-lambda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ jobs:
112112
files: .junitxml
113113
verbose: true
114114
check_required_tests:
115-
name: All AWS Lambda tests passed
115+
name: All pinned AWS Lambda tests passed
116116
needs: test-aws_lambda-pinned
117117
# Always run this, even if a dependent job failed
118118
if: always()

.github/workflows/test-integrations-cloud-computing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ jobs:
157157
files: .junitxml
158158
verbose: true
159159
check_required_tests:
160-
name: All Cloud Computing tests passed
160+
name: All pinned Cloud Computing tests passed
161161
needs: test-cloud_computing-pinned
162162
# Always run this, even if a dependent job failed
163163
if: always()

.github/workflows/test-integrations-common.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
files: .junitxml
7878
verbose: true
7979
check_required_tests:
80-
name: All Common tests passed
80+
name: All pinned Common tests passed
8181
needs: test-common-pinned
8282
# Always run this, even if a dependent job failed
8383
if: always()

.github/workflows/test-integrations-data-processing.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ jobs:
193193
files: .junitxml
194194
verbose: true
195195
check_required_tests:
196-
name: All Data Processing tests passed
196+
name: All pinned Data Processing tests passed
197197
needs: test-data_processing-pinned
198198
# Always run this, even if a dependent job failed
199199
if: always()

.github/workflows/test-integrations-databases.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ jobs:
211211
files: .junitxml
212212
verbose: true
213213
check_required_tests:
214-
name: All Databases tests passed
214+
name: All pinned Databases tests passed
215215
needs: test-databases-pinned
216216
# Always run this, even if a dependent job failed
217217
if: always()

.github/workflows/test-integrations-graphql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ jobs:
157157
files: .junitxml
158158
verbose: true
159159
check_required_tests:
160-
name: All GraphQL tests passed
160+
name: All pinned GraphQL tests passed
161161
needs: test-graphql-pinned
162162
# Always run this, even if a dependent job failed
163163
if: always()

.github/workflows/test-integrations-miscellaneous.yml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,18 @@ jobs:
4545
- name: Erase coverage
4646
run: |
4747
coverage erase
48+
- name: Test launchdarkly latest
49+
run: |
50+
set -x # print commands that are executed
51+
./scripts/runtox.sh "py${{ matrix.python-version }}-launchdarkly-latest"
4852
- name: Test loguru latest
4953
run: |
5054
set -x # print commands that are executed
5155
./scripts/runtox.sh "py${{ matrix.python-version }}-loguru-latest"
56+
- name: Test openfeature latest
57+
run: |
58+
set -x # print commands that are executed
59+
./scripts/runtox.sh "py${{ matrix.python-version }}-openfeature-latest"
5260
- name: Test opentelemetry latest
5361
run: |
5462
set -x # print commands that are executed
@@ -117,10 +125,18 @@ jobs:
117125
- name: Erase coverage
118126
run: |
119127
coverage erase
128+
- name: Test launchdarkly pinned
129+
run: |
130+
set -x # print commands that are executed
131+
./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-launchdarkly"
120132
- name: Test loguru pinned
121133
run: |
122134
set -x # print commands that are executed
123135
./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-loguru"
136+
- name: Test openfeature pinned
137+
run: |
138+
set -x # print commands that are executed
139+
./scripts/runtox.sh --exclude-latest "py${{ matrix.python-version }}-openfeature"
124140
- name: Test opentelemetry pinned
125141
run: |
126142
set -x # print commands that are executed
@@ -165,7 +181,7 @@ jobs:
165181
files: .junitxml
166182
verbose: true
167183
check_required_tests:
168-
name: All Miscellaneous tests passed
184+
name: All pinned Miscellaneous tests passed
169185
needs: test-miscellaneous-pinned
170186
# Always run this, even if a dependent job failed
171187
if: always()

0 commit comments

Comments
 (0)