forked from swiftlang/swift-sdk-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The EndToEnd tests cannot currently be run: * they deadlock when run under `swift test` (swiftlang#143) * the CI requires the use of an HTTP proxy to download from the Internet, but SDK generator does not support proxies (swiftlang#145) The tests are conditionally compiled only on Linux, so we must skip them in CI. Fixes swiftlang#45
- Loading branch information
Showing
3 changed files
with
3 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,8 +13,4 @@ | |
|
||
set -ex | ||
|
||
if [ "$(uname)" = Darwin ]; then | ||
swift test $@ | ||
else | ||
swift build --build-tests $@ | ||
fi | ||
swift test $@ |