1
1
mirror of https://github.com/github/semantic.git synced 2024-12-29 18:06:14 +03:00

GitmonClient spec should not run in parallel

This commit is contained in:
Rick Winfrey 2017-03-21 14:48:47 -07:00
parent 4207e5f901
commit 9cf176a37d

View File

@ -19,7 +19,8 @@ import qualified IntegrationSpec
import Test.Hspec
main :: IO ()
main = hspec . parallel $ do
main = do
hspec . parallel $ do
describe "Alignment" AlignmentSpec.spec
describe "Data.Mergeable" Data.Mergeable.Spec.spec
describe "Data.RandomWalkSimilarity" Data.RandomWalkSimilarity.Spec.spec
@ -34,4 +35,5 @@ main = hspec . parallel $ do
describe "DiffCommand" DiffCommandSpec.spec
describe "ParseCommand" ParseCommandSpec.spec
describe "Integration" IntegrationSpec.spec
describe "GitmonClient" GitmonClientSpec.spec
hspec $ describe "GitmonClient" GitmonClientSpec.spec