From 4027677b384d27b1fd740b2290865d4603adeaf9 Mon Sep 17 00:00:00 2001 From: scito Date: Sun, 4 Sep 2022 13:40:49 +0200 Subject: [PATCH] add vscode settings.json --- .gitignore | 1 + .vscode/settings.json | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index b7c98f9..8fa074b 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ venv/ !example_output.csv !.github/ !.flake8 +!.vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..a70ddf9 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,7 @@ +{ + "python.testing.pytestArgs": [ + "." + ], + "python.testing.unittestEnabled": false, + "python.testing.pytestEnabled": true +}