summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/tox.ini
blob: e9614a50cb0d2269cd4dcc6ad7acf373c53591c3 (plain)
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
[tox]
envlist = py27-{cov,lint,run,check},py3-{cov,lint,run,check}
skipsdist = true
toxworkdir = {env:CEPH_BUILD_DIR}/dashboard
minversion = 2.8.1

[testenv]
setenv=
    CFLAGS = -DXMLSEC_NO_SIZE_T
    UNITTEST = true
    WEBTEST_INTERACTIVE = false
    LD_LIBRARY_PATH = {toxinidir}/../../../../build/lib
    PATH = {toxinidir}/../../../../build/bin:{env:PATH}
    py27: PYTHONPATH = {env:CEPH_LIB}/cython_modules/lib.2
    py3:  PYTHONPATH = {env:CEPH_LIB}/cython_modules/lib.3
    cov:  UNITTEST = true
    cov:  COVERAGE_FILE = .coverage.{envname}
commands=
    pip install -r {toxinidir}/requirements.txt
    py27: pip install -r {toxinidir}/requirements-py27.txt
    py3: pip install -r {toxinidir}/requirements-py3.txt
    cov: coverage erase
    cov: {envbindir}/py.test --cov=. --cov-report= --junitxml=junit.{envname}.xml --doctest-modules controllers services/ tests/ tools.py
    cov: coverage combine {toxinidir}/{env:COVERAGE_FILE}
    cov: coverage report
    cov: coverage xml
    lint: pylint --rcfile=.pylintrc --jobs=5 . module.py tools.py controllers tests services exceptions.py grafana.py ci/check_grafana_uids.py
    lint: pycodestyle --max-line-length=100 --exclude=.tox,venv,frontend,.vscode --ignore=E402,E121,E123,E126,E226,E24,E704,W503,E741 .
    check: python ci/check_grafana_uids.py frontend/src/app ../../../../monitoring/grafana/dashboards
    run: {posargs}