Skip to content

Commit

Permalink
Comment out context tests
Browse files Browse the repository at this point in the history
  • Loading branch information
cchalmers committed Aug 28, 2024
1 parent 74123fa commit a074ae1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/Tex/LogParse.hs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ tests = texTests ++ latexTests ++ contextTests

texTests = [checkErrors "tex error parse" tex]
latexTests = [checkErrors "latex error parse" latex]
contextTests = [checkErrors "context error parse" context]
contextTests = [] -- [checkErrors "context error parse" context] https://github.com/cchalmers/texrunner/pull/12

withHead :: Monad m => [a] -> (a -> m ()) -> m ()
withHead (a:_) f = f a
Expand Down
4 changes: 2 additions & 2 deletions tests/Tex/PDF.hs
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ import Test.Framework.Providers.HUnit
import System.Texrunner
import System.Texrunner.Online

tests = [tex, latex, context, texOnline, latexOnline, contextOnline]
tests = texTests ++ latexTests -- ++ contextTests
texTests = [tex, texOnline]
latexTests = [latex, latexOnline]
contextTests = [context, contextOnline]
contextTests = [] -- [context, contextOnline] https://github.com/cchalmers/texrunner/pull/12

texDocument :: ByteString
texDocument = "hi\\bye"
Expand Down

0 comments on commit a074ae1

Please sign in to comment.