Replies: 4 comments 2 replies
-
|
Exactly, there is no test runner yet, but it's planned and listed in the roadmap. |
Beta Was this translation helpful? Give feedback.
-
|
When necessary, we are using our project orchestration layer (make) to manage external Golang tests. That it is the build target also makes it appropriate as a test target, imo. I'm not certain this will change with the presence of |
Beta Was this translation helpful? Give feedback.
-
|
I agree with @enquora. The build target should be the test target. Quoting
Go has really good builtin support for testing (unit-tests, sub-tests, parallel-tests, race-detection, fuzzer, benchmarks, coverage and it even comes with support for cpu/memory/block/mutex profiling). I dont see a reason to have a builtin testing framework for lisette. I would assume it is community built if there is a real need. However, currently lis is blocking testing by disallowing _test.lis files. So That brings the question, what should lis do during a normal build? Should tests always be compiled, or only during a test run? Probably does not matter for small projects, but it can possibly have an impact when you have thousands of tests. This is most likely a non issue, but just something to think about. |
Beta Was this translation helpful? Give feedback.
-
|
Managed in #711 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
What's the story regarding tests? I see that the
liscommand currently lacks atestoption, so I guess that nothing is implemented at the moment.Is there a plan to write a test runner and integrate it into
lis? Or am I simply not seeing something already existing?Beta Was this translation helpful? Give feedback.
All reactions