Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,10 +138,10 @@ commands:
steps:
- store_test_results:
path: build/test-results/test/TEST.xml
# - codecov/upload:
# binary: ../root/.local/bin/codecovcli
# files: build/test-results/test/TEST.xml
# report_type: test_results
- codecov/upload:
binary: ../root/.local/bin/codecovcli
files: build/test-results/test/TEST.xml
report_type: test_results
run_ats:
parameters:
default_tests:
Expand Down Expand Up @@ -211,7 +211,7 @@ jobs:
unit-tests:
parallelism: 8
executor: default_image
resource_class: "large"
resource_class: "xlarge"
steps:
- setup-uv
- node/install:
Expand Down Expand Up @@ -473,7 +473,7 @@ workflows:
# requires:
# - hold-codemod-tests
- pre-commit
- doctests
# - doctests
# - oss-codemod-tests:
# filters:
# branches:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def test_api_doc_generation_sanity(codebase, language: ProgrammingLanguage) -> N
other_lang = "TS" if language == ProgrammingLanguage.PYTHON else "Py"
# =====[ Python ]=====
docs = get_codegen_sdk_docs(language=language, codebase=codebase)
assert count_tokens(docs) < 50700
assert count_tokens(docs) < 55000
assert f"{lang}Function" in docs
assert f"{lang}Class" in docs
assert f"{other_lang}Function" not in docs
Expand Down