settings.json 500 B

12345678910111213141516171819
  1. {
  2. "python.pythonPath": "/usr/bin/python",
  3. "python.testing.unittestArgs": [
  4. "-v",
  5. "-s",
  6. "./tests",
  7. "-p",
  8. "test_*.py"
  9. ],
  10. "python.testing.pytestEnabled": true,
  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. "python.testing.pytestArgs": [
  17. "tests"
  18. ]
  19. }