Conversation
why: Running some unit tests in a separate file attempts to mitigate the global symbols overflow on Github ci when compiling with nim version <= 1.2.
|
the error in the test indicates that there are too many globals - the better fix would be to reduce the overall count of globals by moving them into |
|
Could you please explain or give an example? As far as I understand, the latest addition has not many globals. So it was just the literal straw that broke the camel's neck. |
|
3 things should be done:
|
|
ok, I see. I guess unittest2 was avoided in order to reduce the imported packages? Otherwise i would prefer to use unittest2 and wrap in the main function wrapper. |
|
Well, then I prefer to do it now. I see that is the most clean solution. It is widely used in |
|
.. or tomorrow morning :) |
|
superseded by #125 |
Running some unit tests in a separate file attempts to mitigate the global symbols overflow on Github ci when compiling with nim
version <= 1.2.