You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some tests like ./tests/v2/test_waku_filter.nim can't be run isolated without importing chronicles. If that import is removed, then the following fails. Note that this was fixed in #1375.
$ ./env.sh bash
$ nim c -r ./tests/v2/test_waku_filter.nim
However, after this fix, we get an UnusedImport warning when compiling all tests. This is clearly not the case, since as stated, if this import is removed the test can't be run isolated.
Acceptance criteria
UnusedImport is not shown anymore when compiling the tests make test2 but we still can run tests isolated.
The text was updated successfully, but these errors were encountered:
Background
Some tests like
./tests/v2/test_waku_filter.nim
can't be run isolated without importingchronicles
. If that import is removed, then the following fails. Note that this was fixed in #1375.However, after this fix, we get an
UnusedImport
warning when compiling all tests. This is clearly not the case, since as stated, if this import is removed the test can't be run isolated.Acceptance criteria
UnusedImport
is not shown anymore when compiling the testsmake test2
but we still can run tests isolated.The text was updated successfully, but these errors were encountered: