mirror of
https://github.com/swift-server/RediStack.git
synced 2026-05-03 07:32:28 +00:00
ce43dad72e
Motivation: For users looking to contribute, and for those looking to validate the library, it was unclear what tests require an actual connection to a Redis instance in order to run. Modifications: Add a `RediStackIntegrationTests` that takes all tests that require a Redis instance in order to run. Result: Those looking to run just unit tests, or contribute new tests, can now directly point to a specific testTarget as defined in the Package manifest.
11 lines
204 B
Swift
11 lines
204 B
Swift
import XCTest
|
|
|
|
import RediStackIntegrationTests
|
|
import RediStackTests
|
|
|
|
var tests = [XCTestCaseEntry]()
|
|
tests += RediStackIntegrationTests.__allTests()
|
|
tests += RediStackTests.__allTests()
|
|
|
|
XCTMain(tests)
|