Fix some pytests (#265)

* Fix encoding issue in cleaner unit test

* Add VS Code task to run pytests

* Fix FileExistsError when running Windows
This commit is contained in:
sephrat
2021-04-08 07:00:05 +02:00
committed by GitHub
parent 1ae063a796
commit bb52c78c5b
3 changed files with 14 additions and 2 deletions

9
.vscode/tasks.json vendored
View File

@@ -52,6 +52,15 @@
"group": "groupA"
},
"problemMatcher": []
},
{
"label": "Run python tests",
"command": "make test",
"type": "shell",
"presentation": {
"reveal": "always"
},
"problemMatcher": []
}
]
}