diff --git a/.github/workflows/stack.yml b/.github/workflows/stack.yml index 1425b4d1..481e52a0 100644 --- a/.github/workflows/stack.yml +++ b/.github/workflows/stack.yml @@ -30,8 +30,8 @@ jobs: export ARGS="--stack-yaml stack-ghc-${{ matrix.ghcVersion }}.yaml" export ARG='--test-arguments' export TEST_PACKAGE="distributed-process-tests:" - stack ${ARGS} test $ARG='--plain -t "!Flaky"' ${TEST_PACKAGE}TestCHInMemory - stack ${ARGS} test $ARG='--plain -t "!Flaky"' ${TEST_PACKAGE}TestCHInTCP + stack ${ARGS} test $ARG='--plain' ${TEST_PACKAGE}TestCHInMemory + stack ${ARGS} test $ARG='--plain' ${TEST_PACKAGE}TestCHInTCP stack ${ARGS} test $ARG='--plain -t "!SpawnReconnect"' ${TEST_PACKAGE}TestClosure stack ${ARGS} test $ARG='--plain' ${TEST_PACKAGE}TestStats stack ${ARGS} test $ARG='--plain' ${TEST_PACKAGE}TestMxInMemory diff --git a/packages/distributed-process-tests/src/Control/Distributed/Process/Tests/CH.hs b/packages/distributed-process-tests/src/Control/Distributed/Process/Tests/CH.hs index 358f6176..bde14f8e 100644 --- a/packages/distributed-process-tests/src/Control/Distributed/Process/Tests/CH.hs +++ b/packages/distributed-process-tests/src/Control/Distributed/Process/Tests/CH.hs @@ -1852,10 +1852,10 @@ tests testtrans = return [ ] -- Tests that fail occasionally and should be revised - , testGroup "Flaky" [ - testCase "Reconnect" (testReconnect testtrans) - , testCase "Registry" (testRegistry testtrans) - , testCase "MergeChannels" (testMergeChannels testtrans) - , testCase "MonitorUnreachable" (testMonitorUnreachable testtrans True False) - ] + -- , testGroup "Flaky" [ + -- testCase "Reconnect" (testReconnect testtrans) + -- , testCase "Registry" (testRegistry testtrans) + -- , testCase "MergeChannels" (testMergeChannels testtrans) + -- , testCase "MonitorUnreachable" (testMonitorUnreachable testtrans True False) + -- ] ]