chore: add release to pip requirements (#17752)

* add requests to pip requirements

* fix tests

* add redis typing for mypy

* fix test
This commit is contained in:
Elizabeth Thompson
2021-12-15 18:01:18 -08:00
parent 1e2b2f10f0
commit 5045ff4d91
10 changed files with 30 additions and 21 deletions

View File

@@ -19,7 +19,6 @@ import unittest
from typing import Set
import pytest
import sqlparse
from superset.exceptions import QueryClauseValidationException
from superset.sql_parse import (
@@ -949,9 +948,6 @@ INSERT INTO TABLE (foo) VALUES (42);
def test_is_select_cte_with_comments() -> None:
"""
Some CTES with comments are not correctly identified as SELECTS.
"""
sql = ParsedQuery(
"""WITH blah AS
(SELECT * FROM core_dev.manager_team),