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
Clone the PTVSD repo and configure it to run tests using UnitTests
Fails without any error messages
Problem is we're not providing the top_level_dir when discovering the tests
Solution is to add top_level_dir tests = unittest.defaultTestLoader.discover(opts.us, opts.up,top_level_dir=".")
The change needs to be applied to both discovery as well as running of tests.