-
-
Notifications
You must be signed in to change notification settings - Fork 368
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Delete unused testdata #763
Delete unused testdata #763
Conversation
This is all dead code. It was brought over from haskell ide engine, but we don't use it. Note: We are deleting test/testdata/wrapper We are NOT deleting test/wrapper/testdata wrapper/testdata contains live testdata, which is being used to test that haskell-language-server-wrapper can load the appropriate version of haskell-language-server based on the environment that it is running in.
These are dead code, they are very simple so they aren't likely to be useful when writing new tests, and they have "HaRe" in the name even though HaRe is gone, which adds mental burden.
These all came over from Haskell IDE Engine, and we aren't using them. So lets clean up by deleting them.
@@ -1,4 +0,0 @@ | |||
main = putStrLn "hello" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
wow, i didnt notice those hlint tests and i wrote equivalent ones from zero 🤦
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good reason to clean things up: so we can see what's there. :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks, nice new year eve cleaning out!
* Delete test/testdata/wrapper/*. This is all dead code. It was brought over from haskell ide engine, but we don't use it. Note: We are deleting test/testdata/wrapper We are NOT deleting test/wrapper/testdata wrapper/testdata contains live testdata, which is being used to test that haskell-language-server-wrapper can load the appropriate version of haskell-language-server based on the environment that it is running in. * Delete HaRe test files. These are dead code, they are very simple so they aren't likely to be useful when writing new tests, and they have "HaRe" in the name even though HaRe is gone, which adds mental burden. * Delete unused test datafiles. These all came over from Haskell IDE Engine, and we aren't using them. So lets clean up by deleting them. Co-authored-by: Javier Neira <[email protected]> Co-authored-by: Pepe Iborra <[email protected]> Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Delete a bunch of unused test data that came over from HIE.