forked from apache/superset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
77 lines (71 loc) · 1.57 KB
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[flake8]
accept-encodings = utf-8
application-import-names = superset
exclude =
.tox
build
docs
superset/assets
superset/data
superset/migrations
superset/templates
ignore =
FI12
FI15
FI16
FI17
FI50
FI51
FI53
FI54
import-order-style = google
max-line-length = 90
require-code = true
[testenv]
commands =
{toxinidir}/superset/bin/superset db upgrade
nosetests {posargs}
deps =
-rrequirements.txt
-rrequirements-dev.txt
coverage
mock
nose
setenv =
PYTHONPATH = {toxinidir}
SUPERSET_CONFIG = tests.superset_test_config
SUPERSET_HOME = {envtmpdir}
py27-mysql: SUPERSET__SQLALCHEMY_DATABASE_URI = mysql://mysqluser:mysqluserpassword@localhost/superset?charset=utf8
py36-mysql: SUPERSET__SQLALCHEMY_DATABASE_URI = mysql://mysqluser:mysqluserpassword@localhost/superset
py{27,36}-postgres: SUPERSET__SQLALCHEMY_DATABASE_URI = postgresql+psycopg2://postgresuser:pguserpassword@localhost/superset
py{27,36}-sqlite: SUPERSET__SQLALCHEMY_DATABASE_URI = sqlite:////{envtmpdir}/superset.db
whitelist_externals =
npm
[testenv:eslint]
changedir = {toxinidir}/superset/assets
commands =
npm run lint
deps =
[testenv:flake8]
commands =
flake8 {toxinidir}/
deps =
-rrequirements-dev.txt
[testenv:javascript]
commands =
npm install -g npm@'>=5.6.0'
{toxinidir}/superset/assets/js_build.sh
deps =
[testenv:pylint]
commands =
pylint superset
deps =
-rrequirements.txt
-rrequirements-dev.txt
[tox]
envlist =
eslint
flake8
javascript
pylint
skipsdist = true