Skip to content

Commit ba3cc81

Browse files
committed
Test libraries only
1 parent b2e38fe commit ba3cc81

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,13 @@ resolve-dependencies:
4444
.PHONY: test-library
4545
test-library:
4646
for platform in "$(TEST_PLATFORM_IOS)" "$(TEST_PLATFORM_MACOS)" "$(TEST_PLATFORM_TVOS)"; do \
47-
xcodebuild test -scheme $(LIBRARY_SCHEME) -destination platform="$$platform"; \
47+
xcodebuild test -scheme $(LIBRARY_SCHEME) -destination platform="$$platform"; \
4848
done
49+
50+
.PHONY: test-example
51+
test-example:
4952
cd Example && xcodebuild test -scheme $(EXAMPLE_SCHEME) -destination platform="$(TEST_PLATFORM_IOS)"
5053

5154
.PHONY: build-examples
5255
build-examples:
53-
cd Example && xcodebuild build -scheme $(EXAMPLE_SCHEME) -destination platform="$(TEST_PLATFORM_IOS)"
56+
cd Example && xcodebuild build -scheme $(EXAMPLE_SCHEME) -destination platform="$(TEST_PLATFORM_IOS)"

0 commit comments

Comments
 (0)