File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ How to run
7
7
1 . Build ` cabal-testsuite ` (` cabal build cabal-testsuite:cabal-tests ` )
8
8
2 . Run the ` cabal-tests ` executable. It will scan for all tests
9
9
in your current directory and subdirectories and run them.
10
- To run a specific set of tests, use ` cabal-tests PATH ... ` .
11
- (e.g. ` cabal run cabal-testsuite:cabal-tests -- cabal-testsuite/PackageTests/TestOptions/setup.test.hs ` )
10
+ To run a specific set of tests, use ` cabal-tests --with-cabal=CABALBIN PATH ... ` .
11
+ (e.g. ` cabal run cabal-testsuite:cabal-tests -- --with-cabal=cabal cabal-testsuite/PackageTests/TestOptions/setup.test.hs ` )
12
12
You can control parallelism using the ` -j ` flag.
13
13
14
14
There are a few useful flags:
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ data CommonArgs = CommonArgs {
104
104
commonArgParser :: Parser CommonArgs
105
105
commonArgParser = CommonArgs
106
106
<$> optional (option str
107
- ( help " Path to cabal-install executable to test"
107
+ ( help " Path to cabal-install executable to test. If omitted, tests involving cabal-install are skipped! "
108
108
<> long " with-cabal"
109
109
<> metavar " PATH"
110
110
))
You can’t perform that action at this time.
0 commit comments