You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How can I ignore this xcodebuild phase? I don't need my tests to be documented.
Is there any documentation or best practices on how to use jazzy with a .podspec file?
The text was updated successfully, but these errors were encountered:
test_spec was new in cocoapods 1.3 and jazzy doesn't handle it properly. It generates an Xcode unit-test target, which require special treatment to document with jazzy (#504).
I think at least for now we should disable test_specs from contributing to --podspec, this is easy enough and probably what most users want?
There aren't any docs you haven't seen: the --podspec argument runs jazzy against the spec and all subspecs for all supported platforms, and generates a default readme + metadata (eg. author) from the podspec.
I'm using jazzy to document a cocoapod.
In my
.jazzy.yaml
, I specified the pod usingpodspec: <My Pod>.podspec
. This used to work fine until I added atest_spec
to my.podspec
file:Now there seems to be a second
xcodebuild
phase that tries to build the target<My-Pod>-Tests
:How can I ignore this
xcodebuild
phase? I don't need my tests to be documented.Is there any documentation or best practices on how to use jazzy with a
.podspec
file?The text was updated successfully, but these errors were encountered: