Skip to content
Next Next commit
Changing from xcodebuild to xctool
  • Loading branch information
Chris Pilcher committed Jun 11, 2016
commit 8596b64870c95cd4b902c46155a2b8a096c7adef
46 changes: 23 additions & 23 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,26 @@ osx_image: xcode7.3

script:

- xcodebuild test -project ./All-Pairs\ Shortest\ Paths/APSP/APSP.xcodeproj -scheme APSPTests
- xcodebuild test -project ./Array2D/Tests/Tests.xcodeproj -scheme Tests
- xcodebuild test -project ./AVL\ Tree/Tests/Tests.xcodeproj -scheme Tests
- xcodebuild test -project ./Binary\ Search/Tests/Tests.xcodeproj -scheme Tests
- xcodebuild test -project ./Binary\ Search\ Tree/Solution\ 1/Tests/Tests.xcodeproj -scheme Tests
- xcodebuild test -project ./Bloom\ Filter/Tests/Tests.xcodeproj -scheme Tests
- xcodebuild test -project ./Breadth-First\ Search/Tests/Tests.xcodeproj -scheme Tests
- xcodebuild test -project ./Bucket\ Sort/Tests/Tests.xcodeproj -scheme Tests
- xcodebuild test -project ./Heap/Tests/Tests.xcodeproj -scheme Tests
- xcodebuild test -project ./Heap\ Sort/Tests/Tests.xcodeproj -scheme Tests
- xcodebuild test -project ./Insertion\ Sort/Tests/Tests.xcodeproj -scheme Tests
- xcodebuild test -project ./K-Means/Tests/Tests.xcodeproj -scheme Tests
- xcodebuild test -project ./Linked\ List/Tests/Tests.xcodeproj -scheme Tests
- xcodebuild test -project ./Longest\ Common\ Subsequence/Tests/Tests.xcodeproj -scheme Tests
- xcodebuild test -project ./Priority\ Queue/Tests/Tests.xcodeproj -scheme Tests
- xcodebuild test -project ./Queue/Tests/Tests.xcodeproj -scheme Tests
- xcodebuild test -project ./Quicksort/Tests/Tests.xcodeproj -scheme Tests
- xcodebuild test -project ./Run-Length\ Encoding/Tests/Tests.xcodeproj -scheme Tests
- xcodebuild test -project ./Select\ Minimum\ Maximum/Tests/Tests.xcodeproj -scheme Tests
- xcodebuild test -project ./Selection\ Sort/Tests/Tests.xcodeproj -scheme Tests
- xcodebuild test -project ./Shell\ Sort/Tests/Tests.xcodeproj -scheme Tests
- xcodebuild test -project ./Single-Source\ Shortest\ Paths\ \(Weighted\)/SSSP.xcodeproj -scheme SSSPTests
- xcodebuild test -project ./Stack/Tests/Tests.xcodeproj -scheme Tests
- xctool test -project ./All-Pairs\ Shortest\ Paths/APSP/APSP.xcodeproj -scheme APSPTests
- xctool test -project ./Array2D/Tests/Tests.xcodeproj -scheme Tests
- xctool test -project ./AVL\ Tree/Tests/Tests.xcodeproj -scheme Tests
- xctool test -project ./Binary\ Search/Tests/Tests.xcodeproj -scheme Tests
- xctool test -project ./Binary\ Search\ Tree/Solution\ 1/Tests/Tests.xcodeproj -scheme Tests
- xctool test -project ./Bloom\ Filter/Tests/Tests.xcodeproj -scheme Tests
- xctool test -project ./Breadth-First\ Search/Tests/Tests.xcodeproj -scheme Tests
- xctool test -project ./Bucket\ Sort/Tests/Tests.xcodeproj -scheme Tests
- xctool test -project ./Heap/Tests/Tests.xcodeproj -scheme Tests
- xctool test -project ./Heap\ Sort/Tests/Tests.xcodeproj -scheme Tests
- xctool test -project ./Insertion\ Sort/Tests/Tests.xcodeproj -scheme Tests
- xctool test -project ./K-Means/Tests/Tests.xcodeproj -scheme Tests
- xctool test -project ./Linked\ List/Tests/Tests.xcodeproj -scheme Tests
- xctool test -project ./Longest\ Common\ Subsequence/Tests/Tests.xcodeproj -scheme Tests
- xctool test -project ./Priority\ Queue/Tests/Tests.xcodeproj -scheme Tests
- xctool test -project ./Queue/Tests/Tests.xcodeproj -scheme Tests
- xctool test -project ./Quicksort/Tests/Tests.xcodeproj -scheme Tests
- xctool test -project ./Run-Length\ Encoding/Tests/Tests.xcodeproj -scheme Tests
- xctool test -project ./Select\ Minimum\ Maximum/Tests/Tests.xcodeproj -scheme Tests
- xctool test -project ./Selection\ Sort/Tests/Tests.xcodeproj -scheme Tests
- xctool test -project ./Shell\ Sort/Tests/Tests.xcodeproj -scheme Tests
- xctool test -project ./Single-Source\ Shortest\ Paths\ \(Weighted\)/SSSP.xcodeproj -scheme SSSPTests
- xctool test -project ./Stack/Tests/Tests.xcodeproj -scheme Tests
2 changes: 1 addition & 1 deletion How to Contribute.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ For the unit tests:
- Add the unit test project to `.travis.yml` so they will be run on [Travis-CI](https://travis-ci.org/raywenderlich/swift-algorithm-club). Add a line to `.travis.yml` like this:

```
- xcodebuild test -project ./Algorithm/Tests/Tests.xcodeproj -scheme Tests
- xctool test -project ./Algorithm/Tests/Tests.xcodeproj -scheme Tests
```

- Configure the Test project's scheme to run on Travis-CI:
Expand Down