Skip to content

Commit

Permalink
Add pgt {test,update}-no-lint commands to skip output post processing
Browse files Browse the repository at this point in the history
  • Loading branch information
snusnu authored and epicallan committed Oct 5, 2023
1 parent 8dd18c8 commit 1ffd0f3
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions pgt/src/PGT/CLI.hs
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,12 @@ parserInfoCommand = wrapHelper subcommands

subcommands =
CLI.subparser
$ mkCommand "list" runList
<> mkCommand "run" runExamples
<> mkCommand "test" (runTests PGT.impureParse)
<> mkCommand "update" (runUpdates PGT.impureParse)
$ mkCommand "list" runList
<> mkCommand "run" runExamples
<> mkCommand "test" (runTests PGT.impureParse)
<> mkCommand "test-no-lint" (runTests identity)
<> mkCommand "update" (runUpdates PGT.impureParse)
<> mkCommand "update-no-lint" (runUpdates identity)

mkCommand
:: String
Expand Down

0 comments on commit 1ffd0f3

Please sign in to comment.