I recently uninstalled Test Explorer UI extension in VSCode. After I installed it back on, the extension panel displays nothing. I performed the installation again several times with the same result: This is what I get
And this is my settings.json file: "python.testing.pytestArgs": [ "." ], "python.testing.unittestEnabled": true, "python.testing.pytestEnabled": false, "python.testing.unittestArgs": [ "-v", "-s", ".", "-p", "test_*.py" ]
I don't think that this matters to anything but I mention that running tests from terminal works fine. Also there is no error whatsoever.
I have been looking for a solution for almost a week now and the only question that was similar to mine was this How to get test explorer to work for Python VS Code? but the solution here was to change "python.unitTest. to python.testing." but as you can see, mine is configure correctly.
Can you please help me?