Skip to content

Commit fcd6ed8

Browse files
committed
Don't pass -enable-testing flag to compiler in CI benchmarking
There are no more @testable in tests or benchmarks code
1 parent 79ab48d commit fcd6ed8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
osx_image: xcode10
2525
script:
2626
# On macOS swift test (i.e. XCTest) outputs to stderr so we need to redirect pipes.
27-
- swift test -c release -Xswiftc -enable-testing --filter BitByteDataBenchmarks 2>&1 | ./ppbenchmarks.py
27+
- swift test -c release --filter BitByteDataBenchmarks 2>&1 | ./ppbenchmarks.py
2828
- stage: benchmark
2929
if: NOT (tag IS present)
3030
language: generic
@@ -34,7 +34,7 @@ jobs:
3434
- eval "$(curl -sL https://gist.githubusercontent.com/kylef/5c0475ff02b7c7671d2a/raw/9f442512a46d7a2af7b850d65a7e9bd31edfb09b/swiftenv-install.sh)"
3535
script:
3636
# On Linux swift test outputs to stdout so we don't need to do anything.
37-
- swift test -c release -Xswiftc -enable-testing --filter BitByteDataBenchmarks | ./ppbenchmarks.py
37+
- swift test -c release --filter BitByteDataBenchmarks | ./ppbenchmarks.py
3838
- stage: deploy
3939
if: tag IS present
4040
language: generic

0 commit comments

Comments
 (0)