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
mix vcr.checkruns the mix test task to verify which cassette are used in tests, and from the documentation, we can pass the test filename. However it seems the filters are not supported.
In my setup I have an alias excluding some tests from the default mix test task, so I can run them explicitly when passing cli arguments for filters, with mix test --include integration for instance. So currently mix vcr.check cannot check cassette usage for part of my tests.
I would naively expect mix vcr.check --include integration to run tests marked with the :integration tag
@tag:integrationtest"my test"do# smthg dependent on real world thingsend
Just like mix test --include integration does.
Same goes for --exclude--only... Or maybe there is another way to go about this ?
The text was updated successfully, but these errors were encountered:
mix vcr.check
runs themix test
task to verify which cassette are used in tests, and from the documentation, we can pass the test filename. However it seems the filters are not supported.In my setup I have an alias excluding some tests from the default
mix test
task, so I can run them explicitly when passing cli arguments for filters, withmix test --include integration
for instance. So currentlymix vcr.check
cannot check cassette usage for part of my tests.I would naively expect
mix vcr.check --include integration
to run tests marked with the:integration
tagJust like
mix test --include integration
does.Same goes for
--exclude
--only
... Or maybe there is another way to go about this ?The text was updated successfully, but these errors were encountered: