diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 3ec3f6d31345291ed2c6600800bc5c0097b2e0aa..ce5f8093054dbc9489a37079ec78c20bdcb3d454 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -5,7 +5,7 @@ defaults:
     shell: bash
 
 # See: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#concurrency.
-concurrency: 
+concurrency:
   group: ${{ github.head_ref }}-${{ github.workflow }}
   cancel-in-progress: true
 
@@ -148,7 +148,7 @@ jobs:
         # run the tests without parallelism to avoid running out of memory
         run: cabal test ghcide --test-options="-j1 --rerun-update" || cabal test ghcide --test-options="-j1 --rerun" || LSP_TEST_LOG_COLOR=0 LSP_TEST_LOG_MESSAGES=true LSP_TEST_LOG_STDERR=true cabal test ghcide --test-options="-j1 --rerun"
 
-      - if: matrix.test && !(matrix.os == 'windows-latest' && matrix.ghc == '9.0.1')
+      - if: matrix.test
         name: Test func-test suite
         env:
           HLS_TEST_EXE: hls
diff --git a/test/functional/Main.hs b/test/functional/Main.hs
index ff9473e56c36004562ef7998f4540c795619da78..c8c16517016a3e5a7c6f2b2e783f0b120f2f21e5 100644
--- a/test/functional/Main.hs
+++ b/test/functional/Main.hs
@@ -34,7 +34,7 @@ main = defaultTestRunner
             , FunctionalLiquid.tests
             , HieBios.tests
             , Highlight.tests
-            , Progress.tests
+            , ignoreInEnv [HostOS Windows, GhcVer GHC90] "Tests gets stuck in ci" $ Progress.tests
             , Reference.tests
             , Symbol.tests
             , TypeDefinition.tests