2014-11-19 19:36:40 +03:00
|
|
|
[tox]
|
2016-06-27 11:30:28 +03:00
|
|
|
envlist = es, addons, devhub, editors, main, ui-tests, flake8, docs, assets
|
2014-11-19 19:36:40 +03:00
|
|
|
|
|
|
|
[testenv]
|
2015-03-12 20:49:34 +03:00
|
|
|
basepython = python2.7
|
2016-05-12 19:31:40 +03:00
|
|
|
install_command = pip install --no-deps {packages}
|
2014-11-19 19:36:40 +03:00
|
|
|
setenv =
|
2015-12-23 16:39:55 +03:00
|
|
|
PYTHONPATH=src
|
2016-03-10 02:37:09 +03:00
|
|
|
ADDONS_LINTER_BIN={toxinidir}/node_modules/.bin/addons-linter
|
2016-05-12 18:40:27 +03:00
|
|
|
DJANGO_SETTINGS_MODULE=settings_test
|
2014-11-19 19:36:40 +03:00
|
|
|
whitelist_externals =
|
|
|
|
make
|
2014-12-18 13:52:39 +03:00
|
|
|
npm
|
2014-11-19 19:36:40 +03:00
|
|
|
|
|
|
|
[testenv:es]
|
|
|
|
commands =
|
2016-05-12 19:31:40 +03:00
|
|
|
make update_deps
|
2016-03-10 02:37:09 +03:00
|
|
|
npm install {toxinidir}
|
2016-06-27 11:30:28 +03:00
|
|
|
py.test -m es_tests --ignore=tests/ui/ --cov-report= --cov-report= --cov=src/olympia/ -v {posargs}
|
2014-11-19 19:36:40 +03:00
|
|
|
|
2016-03-31 18:35:54 +03:00
|
|
|
[testenv:addons]
|
2014-11-19 19:36:40 +03:00
|
|
|
commands =
|
2016-05-12 19:31:40 +03:00
|
|
|
make update_deps
|
2016-03-10 02:37:09 +03:00
|
|
|
npm install {toxinidir}
|
2016-05-12 17:18:56 +03:00
|
|
|
py.test --create-db -n 3 -m 'not es_tests' -v src/olympia/addons/ --cov-report= --cov=src/olympia/ {posargs}
|
2016-03-31 18:35:54 +03:00
|
|
|
|
|
|
|
[testenv:devhub]
|
|
|
|
commands =
|
2016-05-12 19:31:40 +03:00
|
|
|
make update_deps
|
2016-03-31 18:35:54 +03:00
|
|
|
npm install {toxinidir}
|
2016-05-12 17:18:56 +03:00
|
|
|
py.test --create-db -n 3 -m 'not es_tests' -v src/olympia/devhub/ --cov-report= --cov=src/olympia/ {posargs}
|
2016-03-31 18:35:54 +03:00
|
|
|
|
|
|
|
[testenv:editors]
|
|
|
|
commands =
|
2016-05-12 19:31:40 +03:00
|
|
|
make update_deps
|
2016-03-31 18:35:54 +03:00
|
|
|
npm install {toxinidir}
|
2016-05-12 17:18:56 +03:00
|
|
|
py.test --create-db -n 3 -m 'not es_tests' -v src/olympia/editors/ --cov-report= --cov=src/olympia/ {posargs}
|
2014-11-19 19:36:40 +03:00
|
|
|
|
|
|
|
[testenv:main]
|
|
|
|
commands =
|
2016-05-12 19:31:40 +03:00
|
|
|
make update_deps
|
2016-03-10 02:37:09 +03:00
|
|
|
npm install {toxinidir}
|
2016-06-27 11:30:28 +03:00
|
|
|
py.test --create-db -n 3 -m 'not es_tests' -v --ignore=tests/ui/ --ignore src/olympia/addons/ --ignore src/olympia/devhub/ --ignore src/olympia/editors/ --cov-report= --cov=src/olympia/ {posargs}
|
|
|
|
|
|
|
|
[testenv:ui-tests]
|
2016-06-27 11:57:25 +03:00
|
|
|
passenv = DISPLAY
|
2016-06-27 11:30:28 +03:00
|
|
|
install_command = pip install {packages}
|
|
|
|
deps = -rtests/ui/requirements.txt
|
|
|
|
commands = py.test --verify-base-url --driver=Firefox tests/ui {posargs}
|
2014-11-19 19:36:40 +03:00
|
|
|
|
2014-12-18 13:52:39 +03:00
|
|
|
[testenv:assets]
|
|
|
|
commands =
|
2016-05-12 19:31:40 +03:00
|
|
|
make update_deps
|
2016-03-10 02:37:09 +03:00
|
|
|
npm install {toxinidir}
|
2014-12-18 13:52:39 +03:00
|
|
|
make update_assets
|
|
|
|
|
2014-11-19 19:36:40 +03:00
|
|
|
[testenv:flake8]
|
|
|
|
deps =
|
2015-02-10 12:28:04 +03:00
|
|
|
-rrequirements/flake8.txt
|
2014-11-19 19:36:40 +03:00
|
|
|
commands = make flake8
|
|
|
|
|
|
|
|
[testenv:docs]
|
|
|
|
deps =
|
|
|
|
-rrequirements/docs.txt
|
2016-04-12 03:59:28 +03:00
|
|
|
commands =
|
|
|
|
make docs SPHINXOPTS='-nW'
|