From 2900ca345da969e0a146591c8108d92451b37e24 Mon Sep 17 00:00:00 2001 From: John Bodley <4567245+john-bodley@users.noreply.github.com> Date: Sun, 15 Apr 2018 16:21:33 -0700 Subject: [PATCH] [travis] Fixing environments (#4828) --- .travis.yml | 6 ++---- superset/viz.py | 2 +- tests/model_tests.py | 2 +- tests/viz_tests.py | 3 +-- 4 files changed, 5 insertions(+), 8 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0fc30037e9648..7398cf832b1e1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,14 +7,12 @@ cache: - pip env: - TOXENV=javascript - - TOXENV=py27-flake8 + - TOXENV=flake8 - TOXENV=py27-mysql - TOXENV=py27-sqlite - - TOXENV=py27-pylint - - TOXENV=py34-flake8 - TOXENV=py34-postgres - - TOXENV=py34-pylint - TOXENV=py34-sqlite + - TOXENV=pylint before_script: - mysql -u root -e "DROP DATABASE IF EXISTS superset; CREATE DATABASE superset DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci" - mysql -u root -e "CREATE USER 'mysqluser'@'localhost' IDENTIFIED BY 'mysqluserpassword';" diff --git a/superset/viz.py b/superset/viz.py index b1502d83e5c33..5e6042dc46730 100644 --- a/superset/viz.py +++ b/superset/viz.py @@ -746,7 +746,7 @@ def get_data(self, df): start = utils.parse_human_datetime(form_data.get('since')) end = utils.parse_human_datetime(form_data.get('until')) if not start or not end: - raise Exception("Please provide both time bounds (Since and Until)") + raise Exception('Please provide both time bounds (Since and Until)') domain = form_data.get('domain_granularity') diff_delta = rdelta.relativedelta(end, start) diff_secs = (end - start).total_seconds() diff --git a/tests/model_tests.py b/tests/model_tests.py index 19367cfffaadb..94632b1e4083a 100644 --- a/tests/model_tests.py +++ b/tests/model_tests.py @@ -7,10 +7,10 @@ import textwrap from sqlalchemy.engine.url import make_url -from tests.base_tests import SupersetTestCase from superset import db from superset.models.core import Database +from .base_tests import SupersetTestCase class DatabaseModelTestCase(SupersetTestCase): diff --git a/tests/viz_tests.py b/tests/viz_tests.py index cec54649891f1..1762dc863ab3d 100644 --- a/tests/viz_tests.py +++ b/tests/viz_tests.py @@ -10,10 +10,9 @@ from mock import Mock, patch import pandas as pd -from tests.utils import load_fixture - from superset.utils import DTTM_ALIAS import superset.viz as viz +from .utils import load_fixture class BaseVizTestCase(unittest.TestCase):