Commit cd504197 authored by Stefane Fermigier's avatar Stefane Fermigier

Fix typo on variable name.

parent 68658139
...@@ -15,7 +15,7 @@ import pandas.io.sql as psql ...@@ -15,7 +15,7 @@ import pandas.io.sql as psql
from ..tools.config_file_parser import ConfigParser from ..tools.config_file_parser import ConfigParser
from ..tools.connection import MyDB from ..tools.connection import MyDB
RUNNING_TOX = 'RUNTING_TOX' in os.environ RUNNING_TOX = 'RUNNING_TOX' in os.environ
class MdxEngine: class MdxEngine:
......
...@@ -19,18 +19,3 @@ Flask-WTF==0.12 ...@@ -19,18 +19,3 @@ Flask-WTF==0.12
plotly==1.12.9 plotly==1.12.9
XlsxWriter==0.9.3 XlsxWriter==0.9.3
# Tools / dev / testing
tox<3
pytest<4
pytest-cov
xmla
pip-tools
flake8
flake8-tidy-imports
mccabe
isort
yapf
pylint
PrettyTable
py-cpuinfo
gprof2dot
\ No newline at end of file
...@@ -15,7 +15,7 @@ from tests.xs0_responses import TEST_QUERY_AXIS0 ...@@ -15,7 +15,7 @@ from tests.xs0_responses import TEST_QUERY_AXIS0
HOST = "127.0.0.1" HOST = "127.0.0.1"
PORT = 8230 PORT = 8230
RUNNING_TOX = 'RUNTING_TOX' in os.environ RUNNING_TOX = 'RUNNING_TOX' in os.environ
class Member(object): class Member(object):
......
...@@ -4,11 +4,11 @@ envlist = py27 ...@@ -4,11 +4,11 @@ envlist = py27
[testenv] [testenv]
setenv= setenv=
RUNTING_TOX=true RUNNING_TOX=true
HOME_DIR = {homedir} HOME_DIR = {homedir}
whitelist_externals= whitelist_externals=
make make
commands= commands=
pip install -q -r requirements.txt pip install -q -r requirements.txt -r dev-requirements.txt
pytest tests pytest tests
make lint make lint
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment