added automated tests rmved unused imports

This commit is contained in:
Remi Ehounou
2021-05-23 22:28:57 -04:00
parent 4d9bf0e472
commit c7ae2e18fb
9 changed files with 195 additions and 16 deletions

12
.vscode/settings.json vendored
View File

@ -1,9 +1,17 @@
{
"python.pythonPath": "/usr/sbin/python",
"python.testing.pytestArgs": [
"Sample codes"
"tests"
],
"python.testing.unittestEnabled": false,
"python.testing.nosetestsEnabled": false,
"python.testing.pytestEnabled": true
"python.testing.pytestEnabled": true,
"python.testing.unittestArgs": [
"-v",
"-s",
"./tests",
"-p",
"test_*.py"
],
"python.testing.cwd": "tests"
}