Skip to content

Commit 6b2d9c8

Browse files
authored
use large runners (#188)
# Motivation <!-- Why is this change necessary? --> # Content <!-- Please include a summary of the change --> # Testing <!-- How was the change tested? --> # Please check the following before marking your PR as ready for review - [ ] I have added tests for my changes - [ ] I have updated the documentation or added new documentation as needed - [ ] I have read and agree to the [Contributor License Agreement](../CLA.md)
1 parent 5246abf commit 6b2d9c8

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.circleci/config.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -138,10 +138,10 @@ commands:
138138
steps:
139139
- store_test_results:
140140
path: build/test-results/test/TEST.xml
141-
# - codecov/upload:
142-
# binary: ../root/.local/bin/codecovcli
143-
# files: build/test-results/test/TEST.xml
144-
# report_type: test_results
141+
- codecov/upload:
142+
binary: ../root/.local/bin/codecovcli
143+
files: build/test-results/test/TEST.xml
144+
report_type: test_results
145145
run_ats:
146146
parameters:
147147
default_tests:
@@ -211,7 +211,7 @@ jobs:
211211
unit-tests:
212212
parallelism: 8
213213
executor: default_image
214-
resource_class: "large"
214+
resource_class: "xlarge"
215215
steps:
216216
- setup-uv
217217
- node/install:
@@ -473,7 +473,7 @@ workflows:
473473
# requires:
474474
# - hold-codemod-tests
475475
- pre-commit
476-
- doctests
476+
# - doctests
477477
# - oss-codemod-tests:
478478
# filters:
479479
# branches:

tests/unit/codegen/sdk/code_generation/test_api_doc_generation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def test_api_doc_generation_sanity(codebase, language: ProgrammingLanguage) -> N
4040
other_lang = "TS" if language == ProgrammingLanguage.PYTHON else "Py"
4141
# =====[ Python ]=====
4242
docs = get_codegen_sdk_docs(language=language, codebase=codebase)
43-
assert count_tokens(docs) < 50700
43+
assert count_tokens(docs) < 55000
4444
assert f"{lang}Function" in docs
4545
assert f"{lang}Class" in docs
4646
assert f"{other_lang}Function" not in docs

0 commit comments

Comments
 (0)