settings.json 450 B

12345678910111213141516
  1. {
  2. "python.pythonPath": "C:\\dev\\Python\\Python38-32\\python.exe",
  3. "python.testing.unittestArgs": [
  4. "-v",
  5. "-s",
  6. "./tests",
  7. "-p",
  8. "test_*.py"
  9. ],
  10. "python.testing.pytestEnabled": false,
  11. "python.testing.nosetestsEnabled": false,
  12. "python.testing.unittestEnabled": true,
  13. "python.linting.pylintEnabled": false,
  14. "python.linting.flake8Enabled": true,
  15. "python.linting.enabled": true
  16. }