我正在尝试使用 Teamcity 自动运行测试,但似乎在代理编译项目时,它没有正确完成,因为当我运行类似运行测试的命令时,我收到以下错误:
fatal error: 'Pushwoosh/PushNotificationManager.h' file not found
#import <Pushwoosh/PushNotificationManager.h>
[16:48:51][Step 2/2] ^
[16:48:51][Step 2/2] 1 error generated.
但是,当我手动运行相同的命令时,我没有收到任何错误,但我的测试正在运行。我要运行的应用程序是用objective-c编写的,我使用的命令行如下:
$ git clone REPOSITORY_URL (runs sucessfully)
$ pod install (runs sucessfully)
$ xctool -workspace Supermaxi.xcworkspace -scheme Supermaxi test -only FunctionalTests:TestCase000_Registration/test00_WrongEmail -sdk iphonesimulator (fails and I get the previous described error)