Skip to content

Commit 8382d57

Browse files
committed
run even fewer tests
1 parent 28f94a1 commit 8382d57

5 files changed

Lines changed: 16 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ env:
4141

4242
jobs:
4343
build:
44+
if: false
4445
runs-on: ubuntu-latest
4546
steps:
4647
- uses: *actions_checkout_version
@@ -51,6 +52,7 @@ jobs:
5152
run: go build "./..."
5253

5354
addlicense:
55+
if: false
5456
name: addlicense
5557
runs-on: ubuntu-latest
5658
steps:
@@ -62,6 +64,7 @@ jobs:
6264
- run: addlicense -check -f licenses/addlicense.tmpl .
6365

6466
golangci:
67+
if: false
6568
name: lint
6669
runs-on: ubuntu-latest
6770
steps:
@@ -95,9 +98,9 @@ jobs:
9598
- name: Install gotestsum
9699
run: go install gotest.tools/gotestsum@v${{ env.GOTESTSUM_VERSION }}
97100
- name: Build
98-
run: go build -v "./..."
101+
run: go build -v "./topologytest"
99102
- name: Run Tests
100-
run: gotestsum --format pkgname-and-test-fails --hide-summary=skipped --hide-summary=output --jsonfile test.json -- -tags cb_sg_devmode -shuffle=on -timeout=30m -count=1 "./..."
103+
run: gotestsum --format pkgname-and-test-fails --hide-summary=skipped --hide-summary=output --jsonfile test.json -- -tags cb_sg_devmode -shuffle=on -timeout=30m -count=1 "./topologytest"
101104
shell: bash
102105
- name: Test Summary
103106
if: always()
@@ -272,18 +275,21 @@ jobs:
272275
if-no-files-found: warn
273276

274277
python-format:
278+
if: false
275279
runs-on: ubuntu-latest
276280
steps:
277281
- uses: *actions_checkout_version
278282
- uses: *actions_ruff_version
279283
with:
280284
args: 'format --check'
281285
python-lint:
286+
if: false
282287
runs-on: ubuntu-latest
283288
steps:
284289
- uses: *actions_checkout_version
285290
- uses: *actions_ruff_version
286291
test-sgcollect:
292+
if: false
287293
runs-on: ${{ matrix.os }}
288294
strategy:
289295
fail-fast: false
@@ -300,6 +306,7 @@ jobs:
300306
uv run -- mypy
301307
302308
test-stats-definition-exporter:
309+
if: false
303310
runs-on: ${{ matrix.os }}
304311
strategy:
305312
fail-fast: false
@@ -339,6 +346,7 @@ jobs:
339346
retention-days: 7
340347
if-no-files-found: warn
341348
cache_perf_tool_build:
349+
if: false
342350
runs-on: ubuntu-latest
343351
name: build cache perf tool
344352
steps:
@@ -349,6 +357,7 @@ jobs:
349357
- name: Build
350358
run: go build "./tools/cache_perf_tool"
351359
govulncheck:
360+
if: false
352361
runs-on: ubuntu-latest
353362
name: Run govulncheck
354363
steps:

.github/workflows/manifestvalidation.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ concurrency:
3737

3838
jobs:
3939
manifest_validation:
40+
if: false
4041
runs-on: ubuntu-latest
4142
steps:
4243
- uses: actions/checkout@v6

.github/workflows/openapi-pr.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ concurrency:
3131

3232
jobs:
3333
redocly_preview_links:
34+
if: false
3435
runs-on: ubuntu-latest
3536
steps:
3637
- name: Find Comment

.github/workflows/openapi.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ concurrency:
4545

4646
jobs:
4747
api_validation:
48+
if: false
4849
runs-on: ubuntu-latest
4950
name: OpenAPI Validation
5051
steps:
@@ -55,6 +56,7 @@ jobs:
5556
npx --yes @redocly/cli@2 lint --config=.redocly.yaml --format=stylish
5657
5758
yamllint:
59+
if: false
5860
name: 'yamllint'
5961
runs-on: ubuntu-latest
6062
steps:

.github/workflows/shell.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ concurrency:
3535

3636
jobs:
3737
shellcheck:
38+
if: false
3839
name: Shellcheck
3940
runs-on: ubuntu-latest
4041
steps:

0 commit comments

Comments
 (0)