From a60273f1dbaef53f746003b4a56a479e1a47040f Mon Sep 17 00:00:00 2001 From: Sathyajith Bhat Date: Sat, 9 May 2020 19:20:04 +0300 Subject: [PATCH] Add deepsource integration (#79) * add test, handle Youtube quota expiry better (#68) * add sigint handler to handle Ctrl+C better * major version bump due to Python version change (now needs 3.6+) * move sentry around so that github action doesn;t complain when trying to fetch version for publishing * move sentry around * oops, moved signal to wrong place * Add HTML Scraping functionality * Update requirements.txt to fit HTML Scrape * change the log structure * some additional error handling when scraping fails * tests for getting link w/ scraping * update requirements for packaging * add deepsource Co-authored-by: Luca Koroll --- .deepsource.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .deepsource.toml diff --git a/.deepsource.toml b/.deepsource.toml new file mode 100644 index 00000000..d2a7f6a8 --- /dev/null +++ b/.deepsource.toml @@ -0,0 +1,10 @@ +version = 1 + +test_patterns = ["*tests/**"] + +[[analyzers]] +name = "python" +enabled = true + + [analyzers.meta] + runtime_version = "3.x.x"