This repository was archived by the owner on Jan 17, 2019. It is now read-only.

Description
After updating to Xcode 8.3 I have switched to the master build of pxctest (because 0.3.1 doesn't work with Xcode 8.3) and tried to run our test suite. Pxctest reported Test run was empty, no tests were executed error.
If I run the test suite with xcodebuild using the command below, all the test files are found and executed .
xcodebuild test-without-building \
-xctestrun './xcode-build-dir/Build/Intermediates/CodeCoverage/Products/MyApp_iphonesimulator10.3-x86_64.xctestrun' \
-destination "OS=10.3,name=iPhone 7 Plus"
To run pxctest, I use the following command:
pxctest run-tests \
--destination 'name=iPhone 7 Plus,os=iOS 10.3' \
--testrun './xcode-build-dir/Build/Intermediates/CodeCoverage/Products/MyApp_iphonesimulator10.3-x86_64.xctestrun' \
--output './xcode-build-dir/reports'