File tree Expand file tree Collapse file tree 3 files changed +15
-3
lines changed
Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -14,9 +14,10 @@ let package = Package(
1414 swiftSettings: [
1515 . unsafeFlags( [ " -Xfrontend " , " -enable-experimental-concurrency " ] )
1616 ] ) ,
17- . testTarget (
18- name: " PostgreSQLTests " ,
17+ . executableTarget (
18+ name: " Tests/PostgreSQL " ,
1919 dependencies: [ " Test " , " PostgreSQL " ] ,
20+ path: " Tests/PostgreSQL " ,
2021 swiftSettings: [
2122 . unsafeFlags( [ " -Xfrontend " , " -enable-experimental-concurrency " ] )
2223 ] )
Original file line number Diff line number Diff line change 11import Test
22@testable import PostgreSQL
33
4- class PostgreSQLTests : TestCase {
4+ test . case ( " " ) {
55
66}
7+
8+ test. run ( )
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ set -e
4+
5+ swift build
6+
7+ export DYLD_LIBRARY_PATH=/Library/Developer/Toolchains/swift-latest.xctoolchain/usr/lib/swift/macosx
8+
9+ .build/debug/Tests/PostgreSQL
You can’t perform that action at this time.
0 commit comments