We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5031a64 commit 6c50ef0Copy full SHA for 6c50ef0
.travis.yml
@@ -10,7 +10,7 @@ env:
10
- LANG=en_US.UTF-8
11
matrix:
12
- TEST_TYPE=iOS
13
- - TEST_TYPE=OSX
+ - TEST_TYPE=macOS
14
- TEST_TYPE=Deployment
15
- TEST_TYPE=Starters
16
- TEST_TYPE=CocoaPods
@@ -29,10 +29,10 @@ install:
29
fi
30
script:
31
- |
32
- TEST_TYPE=$(echo "$TEST_TYPE" | tr '[:upper:]' '[:lower:]')
33
- bundle exec rake test:$TEST_TYPE
+ RAKE_TASK_NAME=$(echo "$TEST_TYPE" | tr '[:upper:]' '[:lower:]')
+ bundle exec rake test:$RAKE_TASK_NAME
34
after_success:
35
36
- if [ "$TEST_TYPE" = "ios" ] || [ "$TEST_TYPE" = "osx" ]; then
+ if [ "$TEST_TYPE" = iOS ] || [ "$TEST_TYPE" = macOS ]; then
37
bash <(curl -s https://codecov.io/bash)
38
- fi
+ fi
0 commit comments