Skip to content
Open
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
5 changes: 4 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,10 @@ jobs:
# See the "CI Setup" document for details of how this was set up.
ci/decrypt_secret.sh
tar xvf "${HOME}"/secrets/secrets.tar
cp "./ci_secrets/vuforia_secrets_${JOB_INDEX}.env" ./vuforia_secrets.env
# There are 100 packaged credential files (indices 0-99). When the
# matrix grows past that, reuse file 0 for the leftover jobs.
SECRETS_FILE="./ci_secrets/vuforia_secrets_$((JOB_INDEX % 100)).env"
cp "${SECRETS_FILE}" ./vuforia_secrets.env

# We have seen issues with running out of disk space on test_docker
- name: Free Disk Space (Ubuntu)
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ optional-dependencies.dev = [
"pydocstyle==6.3",
"pylint[spelling]==4.0.7",
"pylint-per-file-ignores==3.2.1",
"pyproject-fmt==2.27.0",
"pyproject-fmt==2.28.0",
"pyrefly==1.2.0",
"pyright==1.1.411",
"pyroma==5.0.1",
Expand Down Expand Up @@ -462,17 +462,17 @@ retry_delay = "10"
xfail_strict = true

[tool.coverage]
run.source = [ "ci/", "src/", "tests/" ]
run.branch = true
run.parallel = true
run.patch = [ "subprocess" ]
run.relative_files = true
run.source = [ "ci/", "src/", "tests/" ]
run.patch = [ "subprocess" ]
report.fail_under = 100
report.exclude_also = [
"case _ as unreachable:\n\\s*assert_never\\(",
"class .*\\bProtocol\\):",
"if TYPE_CHECKING:",
]
report.fail_under = 100
report.show_missing = true

[tool.towncrier]
Expand Down
1 change: 1 addition & 0 deletions spelling_private_dict.txt
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ travis
txt
unlinks
unmocked
unrouted
untagged
url
usefixtures
Expand Down
56 changes: 28 additions & 28 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading