Skip to content

Commit 8596b64

Browse files
author
Chris Pilcher
committed
Changing from xcodebuild to xctool
1 parent 5f31d0f commit 8596b64

File tree

2 files changed

+24
-24
lines changed

2 files changed

+24
-24
lines changed

.travis.yml

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -3,26 +3,26 @@ osx_image: xcode7.3
33

44
script:
55

6-
- xcodebuild test -project ./All-Pairs\ Shortest\ Paths/APSP/APSP.xcodeproj -scheme APSPTests
7-
- xcodebuild test -project ./Array2D/Tests/Tests.xcodeproj -scheme Tests
8-
- xcodebuild test -project ./AVL\ Tree/Tests/Tests.xcodeproj -scheme Tests
9-
- xcodebuild test -project ./Binary\ Search/Tests/Tests.xcodeproj -scheme Tests
10-
- xcodebuild test -project ./Binary\ Search\ Tree/Solution\ 1/Tests/Tests.xcodeproj -scheme Tests
11-
- xcodebuild test -project ./Bloom\ Filter/Tests/Tests.xcodeproj -scheme Tests
12-
- xcodebuild test -project ./Breadth-First\ Search/Tests/Tests.xcodeproj -scheme Tests
13-
- xcodebuild test -project ./Bucket\ Sort/Tests/Tests.xcodeproj -scheme Tests
14-
- xcodebuild test -project ./Heap/Tests/Tests.xcodeproj -scheme Tests
15-
- xcodebuild test -project ./Heap\ Sort/Tests/Tests.xcodeproj -scheme Tests
16-
- xcodebuild test -project ./Insertion\ Sort/Tests/Tests.xcodeproj -scheme Tests
17-
- xcodebuild test -project ./K-Means/Tests/Tests.xcodeproj -scheme Tests
18-
- xcodebuild test -project ./Linked\ List/Tests/Tests.xcodeproj -scheme Tests
19-
- xcodebuild test -project ./Longest\ Common\ Subsequence/Tests/Tests.xcodeproj -scheme Tests
20-
- xcodebuild test -project ./Priority\ Queue/Tests/Tests.xcodeproj -scheme Tests
21-
- xcodebuild test -project ./Queue/Tests/Tests.xcodeproj -scheme Tests
22-
- xcodebuild test -project ./Quicksort/Tests/Tests.xcodeproj -scheme Tests
23-
- xcodebuild test -project ./Run-Length\ Encoding/Tests/Tests.xcodeproj -scheme Tests
24-
- xcodebuild test -project ./Select\ Minimum\ Maximum/Tests/Tests.xcodeproj -scheme Tests
25-
- xcodebuild test -project ./Selection\ Sort/Tests/Tests.xcodeproj -scheme Tests
26-
- xcodebuild test -project ./Shell\ Sort/Tests/Tests.xcodeproj -scheme Tests
27-
- xcodebuild test -project ./Single-Source\ Shortest\ Paths\ \(Weighted\)/SSSP.xcodeproj -scheme SSSPTests
28-
- xcodebuild test -project ./Stack/Tests/Tests.xcodeproj -scheme Tests
6+
- xctool test -project ./All-Pairs\ Shortest\ Paths/APSP/APSP.xcodeproj -scheme APSPTests
7+
- xctool test -project ./Array2D/Tests/Tests.xcodeproj -scheme Tests
8+
- xctool test -project ./AVL\ Tree/Tests/Tests.xcodeproj -scheme Tests
9+
- xctool test -project ./Binary\ Search/Tests/Tests.xcodeproj -scheme Tests
10+
- xctool test -project ./Binary\ Search\ Tree/Solution\ 1/Tests/Tests.xcodeproj -scheme Tests
11+
- xctool test -project ./Bloom\ Filter/Tests/Tests.xcodeproj -scheme Tests
12+
- xctool test -project ./Breadth-First\ Search/Tests/Tests.xcodeproj -scheme Tests
13+
- xctool test -project ./Bucket\ Sort/Tests/Tests.xcodeproj -scheme Tests
14+
- xctool test -project ./Heap/Tests/Tests.xcodeproj -scheme Tests
15+
- xctool test -project ./Heap\ Sort/Tests/Tests.xcodeproj -scheme Tests
16+
- xctool test -project ./Insertion\ Sort/Tests/Tests.xcodeproj -scheme Tests
17+
- xctool test -project ./K-Means/Tests/Tests.xcodeproj -scheme Tests
18+
- xctool test -project ./Linked\ List/Tests/Tests.xcodeproj -scheme Tests
19+
- xctool test -project ./Longest\ Common\ Subsequence/Tests/Tests.xcodeproj -scheme Tests
20+
- xctool test -project ./Priority\ Queue/Tests/Tests.xcodeproj -scheme Tests
21+
- xctool test -project ./Queue/Tests/Tests.xcodeproj -scheme Tests
22+
- xctool test -project ./Quicksort/Tests/Tests.xcodeproj -scheme Tests
23+
- xctool test -project ./Run-Length\ Encoding/Tests/Tests.xcodeproj -scheme Tests
24+
- xctool test -project ./Select\ Minimum\ Maximum/Tests/Tests.xcodeproj -scheme Tests
25+
- xctool test -project ./Selection\ Sort/Tests/Tests.xcodeproj -scheme Tests
26+
- xctool test -project ./Shell\ Sort/Tests/Tests.xcodeproj -scheme Tests
27+
- xctool test -project ./Single-Source\ Shortest\ Paths\ \(Weighted\)/SSSP.xcodeproj -scheme SSSPTests
28+
- xctool test -project ./Stack/Tests/Tests.xcodeproj -scheme Tests

How to Contribute.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ For the unit tests:
3131
- 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:
3232

3333
```
34-
- xcodebuild test -project ./Algorithm/Tests/Tests.xcodeproj -scheme Tests
34+
- xctool test -project ./Algorithm/Tests/Tests.xcodeproj -scheme Tests
3535
```
3636

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

0 commit comments

Comments
 (0)