Amiibo Service live tests refactoring #15

Merged
javier merged 15 commits from library/amiibo-service-tests-update into main 2025-10-01 23:19:15 +00:00
2 changed files with 17 additions and 11 deletions
Showing only changes of commit 163608968e - Show all commits
+1 -1
View File
@@ -12,10 +12,10 @@
# --- DOCUMENTATION --- # --- DOCUMENTATION ---
DOCC_ARCHIVE_OUTPUT=./${SPM_LIBRARY_TARGET}.doccarchive
DOCC_GITHUB_OUTPUT=./docs DOCC_GITHUB_OUTPUT=./docs
DOCC_GITHUB_BASE_PATH=amiibo-service DOCC_GITHUB_BASE_PATH=amiibo-service
DOCC_PREVIEW_URL=http://localhost:8080/documentation/amiiboservice DOCC_PREVIEW_URL=http://localhost:8080/documentation/amiiboservice
DOCC_XCODE_OUTPUT=./${SPM_LIBRARY_TARGET}.doccarchive
# -- SWIFT PACKAGE MANAGER --- # -- SWIFT PACKAGE MANAGER ---
+16 -10
View File
@@ -41,8 +41,8 @@ pkg-reset: ## Resets the complete SPM cache/build folder of the package
@swift package reset @swift package reset
pkg-pristine: pkg-clean pkg-reset ## Deletes all built artifacts, caches, and documentations of the package pkg-pristine: pkg-clean pkg-reset ## Deletes all built artifacts, caches, and documentations of the package
@rm -drf $(DOCC_ARCHIVE_OUTPUT)
@rm -drf $(DOCC_GITHUB_OUTPUT) @rm -drf $(DOCC_GITHUB_OUTPUT)
@rm -drf $(DOCC_XCODE_OUTPUT)
pkg-outdated: ## Lists the SPM package dependencies that can be updated pkg-outdated: ## Lists the SPM package dependencies that can be updated
@swift package update --dry-run @swift package update --dry-run
@@ -52,7 +52,16 @@ pkg-update: ## Updates the SPM package dependencies
# DOCUMENTATION # DOCUMENTATION
doc-generate: doc-generate-xcode doc-generate-github ## Generates the library documentation for both Github and Xcode doc-generate: doc-generate-archive doc-generate-github ## Generates the library documentation for both Github and Xcode
doc-generate-archive: ## Generates the library documentation archive for Xcode
@swift package \
--allow-writing-to-directory $(DOCC_ARCHIVE_OUTPUT) \
generate-documentation \
--target $(SPM_LIBRARY_TARGET) \
--include-extended-types \
--enable-inherited-docs \
--output-path $(DOCC_ARCHIVE_OUTPUT)
doc-generate-github: ## Generates the library documentation for Github doc-generate-github: ## Generates the library documentation for Github
@swift package \ @swift package \
@@ -61,22 +70,19 @@ doc-generate-github: ## Generates the library documentation for Github
--target $(SPM_LIBRARY_TARGET) \ --target $(SPM_LIBRARY_TARGET) \
--disable-indexing \ --disable-indexing \
--transform-for-static-hosting \ --transform-for-static-hosting \
--include-extended-types \
--enable-inherited-docs \
--hosting-base-path $(DOCC_GITHUB_BASE_PATH) \ --hosting-base-path $(DOCC_GITHUB_BASE_PATH) \
--output-path $(DOCC_GITHUB_OUTPUT) --output-path $(DOCC_GITHUB_OUTPUT)
doc-generate-xcode: ## Generates the library documentation for Xcode
@swift package \
--allow-writing-to-directory $(DOCC_XCODE_OUTPUT) \
generate-documentation \
--target $(SPM_LIBRARY_TARGET) \
--output-path $(DOCC_XCODE_OUTPUT)
doc-preview: ## Previews the library documentation in Safari doc-preview: ## Previews the library documentation in Safari
@open -a safari $(DOCC_PREVIEW_URL) @open -a safari $(DOCC_PREVIEW_URL)
@swift package \ @swift package \
--disable-sandbox \ --disable-sandbox \
preview-documentation \ preview-documentation \
--target $(SPM_LIBRARY_TARGET) --target $(SPM_LIBRARY_TARGET) \
--include-extended-types \
--enable-inherited-docs
# IDE # IDE