Skip to content

Commit

Permalink
Disable flaky tests
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurentRDC committed Aug 31, 2024
1 parent 9e2c126 commit e038ca1
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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)
-- ]
]

0 comments on commit e038ca1

Please sign in to comment.