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
For fairly-sized test-suites, it can be convenient to run tests based on patterns, like:
rv example reverse test some-test-name*
This way, we can easily filter tests by name, for example, rv example reverse test test-foo* to run all tests starting with test-foo.
We can support wildcards like:
* for any characters: rv example reverse test test-xyz* (runs all tests starting with test-xyz)
? for a single character: rv example reverse test test-?oo (runs test-foo, test-boo, etc.)
This idea was proposed by @faculerena during a presentation to CoinFabrik on 12/12/2024, but the specifics are outlined here for further discussion (once the repository becomes public).
The text was updated successfully, but these errors were encountered:
For fairly-sized test-suites, it can be convenient to run tests based on patterns, like:
This way, we can easily filter tests by name, for example,
rv example reverse test test-foo*
to run all tests starting withtest-foo
.We can support wildcards like:
*
for any characters:rv example reverse test test-xyz*
(runs all tests starting withtest-xyz
)?
for a single character:rv example reverse test test-?oo
(runstest-foo
,test-boo
, etc.)This idea was proposed by @faculerena during a presentation to CoinFabrik on 12/12/2024, but the specifics are outlined here for further discussion (once the repository becomes public).
The text was updated successfully, but these errors were encountered: