From 82b4e13fb0aa6ae53075cb38975738edc1e3d03c Mon Sep 17 00:00:00 2001 From: Vladimir Safonkin Date: Fri, 25 Dec 2020 12:36:01 +0300 Subject: [PATCH] [Ubuntu] Move Haskell tests to separate file. (#2348) * Move Haskell tests to separate file * Minor fix --- images/linux/scripts/installers/haskell.sh | 2 +- .../linux/scripts/tests/{Common.Tests.ps1 => Haskell.Tests.ps1} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename images/linux/scripts/tests/{Common.Tests.ps1 => Haskell.Tests.ps1} (100%) diff --git a/images/linux/scripts/installers/haskell.sh b/images/linux/scripts/installers/haskell.sh index 5a747950c..24fd6091f 100644 --- a/images/linux/scripts/installers/haskell.sh +++ b/images/linux/scripts/installers/haskell.sh @@ -38,4 +38,4 @@ curl -sSL https://get.haskellstack.org/ | sh ln -s "/opt/ghc/$defaultGHCVersion/bin/ghc" "/usr/bin/ghc" ln -s "/opt/cabal/$cabalVersion/bin/cabal" "/usr/bin/cabal" -invoke_tests "Common" "Haskell" \ No newline at end of file +invoke_tests "Haskell" \ No newline at end of file diff --git a/images/linux/scripts/tests/Common.Tests.ps1 b/images/linux/scripts/tests/Haskell.Tests.ps1 similarity index 100% rename from images/linux/scripts/tests/Common.Tests.ps1 rename to images/linux/scripts/tests/Haskell.Tests.ps1