feat: VSCodeでテストするときも収集対象から除いた

This commit is contained in:
shimoda.m@nds-tyo.co.jp 2022-08-18 16:57:37 +09:00
parent 3b74a8ea9f
commit 97141076c2
2 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@
"python.linting.flake8Args": ["--max-line-length=150", "--ignore=F541"],
"python.formatting.provider": "autopep8",
"python.formatting.autopep8Args": ["--max-line-length", "150"],
"python.testing.pytestArgs": ["tests"],
"python.testing.pytestArgs": ["tests", "--ignore=tests/test_walk_through.py"],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true
}