Re: [swift-users] passing command line arguments to `swift test`

2017-05-21 Thread Daniel Dunbar via swift-users
To run one test you can use: swift test -s BasicTests.PathTests/testContains See: swift test --help - Daniel > On May 19, 2017, at 4:34 PM, Kelvin Ma via swift-users > wrote: > > i want to be able to run a single test case at a time instead of my whole > test

Re: [swift-users] passing command line arguments to `swift test`

2017-05-19 Thread Kelvin Ma via swift-users
i want to be able to run a single test case at a time instead of my whole test suite and i’m currently invoking the test binary directly after doing `swift test` On May 19, 2017, at 4:56 PM, Brent Royal-Gordon wrote: >> On May 18, 2017, at 8:16 AM, Kelvin Ma via