Skip to content

Commit

Permalink
Remove travis debugging, it didn't work. Drop back to using xcode7.3 …
Browse files Browse the repository at this point in the history
…until they get an 8.1 environment
  • Loading branch information
cmsj committed Nov 15, 2016
1 parent ddb19f0 commit e9a2734
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
language: objective-c
osx_image: xcode8
osx_image: xcode7.3
before_install:
- gem install github-markdown xcpretty-travis-formatter
before_script:
Expand Down
5 changes: 0 additions & 5 deletions LuaSkin/LuaSkinTests/LuaSkinTests.m
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,6 @@ - (void)setUp {

// Find where our bundle is on disk
NSDictionary *environment = [NSProcessInfo processInfo].environment;
NSLog(@"Environment: %@", environment);

NSString *xcTestConfigurationFilePath = environment[@"XCTestConfigurationFilePath"];
NSRange chopPoint = [xcTestConfigurationFilePath rangeOfString:@"LuaSkinTests.xctest/Contents/Resources/"];
Expand All @@ -164,10 +163,6 @@ - (void)setUp {
// Now find lsunit.lua within the bundle. It will end by require()ing our init.lua
NSString *lsUnitPath = [NSString stringWithFormat:@"%@/lsunit.lua", bundlePath];

NSString *travisDebugNonsense = [NSString stringWithFormat:@"ENV: %@ PATH: %@", environment, bundlePath];
NSException *debugException = [NSException exceptionWithName:@"LOLDEBUG" reason:travisDebugNonsense userInfo:nil];
@throw debugException;

// Prepare a refTable
lua_newtable(self.skin.L);
self.refTable = luaL_ref(self.skin.L, LUA_REGISTRYINDEX);
Expand Down

0 comments on commit e9a2734

Please sign in to comment.