Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/googleapis/java-firestore --skill verify-local-changes명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | Verify Local Changes |
| description | Verifies local Java SDK changes. |
This skill documents how to verify local code changes for the Java Firestore SDK. This should be run every time you complete a fix or feature and are prepared to push a pull request.
Ensure you have Maven installed and are in the java-firestore directory before running commands.
Run the formatter to ensure formatting checks pass:
mvn com.spotify.fmt:fmt-maven-plugin:format
mvn test -Dtest=MyUnitTest#testMethod
mvn test -Dtest=MyUnitTest
ITBaseTest.java)When running integration tests, configure your execution using properties or environment variables:
FIRESTORE_EDITION:
standard (Default)enterpriseenterprise editions, while standard Queries run on both.FIRESTORE_DATABASE_ID:
enterprise). Adjust this flag if pointing to specific instances.FIRESTORE_TARGET_BACKEND:
PROD (Default)QA (points to standard sandboxes)NIGHTLY (points to test-firestore.sandbox.googleapis.com:443)EMULATOR (points to localhost:8080)IT).mvn verify -Penable-integration-tests -DFIRESTORE_EDITION=enterprise -DFIRESTORE_DATABASE_ID=enterprise -Dtest=ITTest#testMethod -Dclirr.skip=true -Denforcer.skip=true -fae
mvn verify -Penable-integration-tests -DFIRESTORE_EDITION=enterprise -DFIRESTORE_DATABASE_ID=enterprise -Dtest=ITTest -Dclirr.skip=true -Denforcer.skip=true -fae
Run the full integration regression suite once you are confident subsets pass:
mvn verify -Penable-integration-tests -DFIRESTORE_EDITION=enterprise -DFIRESTORE_DATABASE_ID=enterprise -Dclirr.skip=true -Denforcer.skip=true -fae
[!TIP] Use
-Dclirr.skip=true -Denforcer.skip=trueto speed up iterations where appropriate without leaking compliance checks.
If you run into issues executing tests with the commands above, consult the Kokoro configuration files as the ultimate source of truth:
.kokoro/presubmit/integration.cfg (or integration-named-db.cfg).kokoro/nightly/integration.cfg (or integration-named-db.cfg).kokoro/build.shThese files define the exact environment variables (e.g., specific endpoints or endpoints overrides) the CI server uses!