Skip to content

Commit 976b730

Browse files
author
IlyaFaer
committed
skip numeric
1 parent 54aa19e commit 976b730

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

test/test_suite.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616

17+
import decimal
1718
import operator
19+
import os
1820
import pytest
19-
import decimal
2021
import pytz
2122

2223
import sqlalchemy
@@ -1008,6 +1009,10 @@ def test_text_roundtrip(self):
10081009
eq_(row, ("some text",))
10091010

10101011

1012+
@pytest.mark.skipif(
1013+
os.getenv("SPANNER_EMULATOR_HOST"),
1014+
reason="Numeric type isn't supported by emulator yet",
1015+
)
10111016
class NumericTest(_NumericTest):
10121017
@emits_warning(r".*does \*not\* support Decimal objects natively")
10131018
def test_render_literal_numeric(self):

0 commit comments

Comments
 (0)