addons-server/tox.ini

73 строки
1.8 KiB
INI
Исходник Обычный вид История

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]
basepython = python2.7
install_command = pip install --no-deps {packages}
2014-11-19 19:36:40 +03:00
setenv =
PYTHONPATH=src
ADDONS_LINTER_BIN={toxinidir}/node_modules/.bin/addons-linter
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 =
make update_deps
2017-01-03 15:49:24 +03:00
py.test -m es_tests --ignore=tests/ui/ -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 =
make update_deps
2017-01-03 15:49:24 +03:00
py.test --create-db -n 2 -m 'not es_tests' -v src/olympia/addons/ {posargs}
2016-03-31 18:35:54 +03:00
[testenv:devhub]
commands =
make update_deps
2017-01-03 15:49:24 +03:00
py.test --create-db -n 2 -m 'not es_tests' -v src/olympia/devhub/ {posargs}
2016-03-31 18:35:54 +03:00
[testenv:editors]
commands =
make update_deps
2017-01-03 15:49:24 +03:00
py.test --create-db -n 2 -m 'not es_tests' -v src/olympia/editors/ {posargs}
[testenv:amo]
commands =
make update_deps
2017-01-03 15:49:24 +03:00
py.test --create-db -n 2 -m 'not es_tests' -v src/olympia/amo/ {posargs}
[testenv:users]
commands =
make update_deps
2017-01-03 15:49:24 +03:00
py.test --create-db -n 2 -m 'not es_tests' -v src/olympia/users/ {posargs}
2014-11-19 19:36:40 +03:00
[testenv:main]
commands =
make update_deps
2017-01-03 15:49:24 +03:00
py.test --create-db -n 2 -m 'not es_tests' -v src/olympia/ --ignore src/olympia/addons/ --ignore src/olympia/devhub/ --ignore src/olympia/editors/ --ignore src/olympia/amo/ --ignore src/olympia/users/ {posargs}
2016-06-27 11:30:28 +03:00
[testenv:ui-tests]
passenv = DISPLAY PYTEST_ADDOPTS PYTEST_BASE_URL ELASTICSEARCH_LOCATION
commands =
make update_deps
pip install --exists-action=w -r tests/ui/requirements.txt
pytest --boxed --driver Firefox -v tests/ui {posargs}
2014-11-19 19:36:40 +03:00
2014-12-18 13:52:39 +03:00
[testenv:assets]
commands =
make update_deps
2014-12-18 13:52:39 +03:00
make update_assets
2014-11-19 19:36:40 +03:00
[testenv:flake8]
recreate = True
2014-11-19 19:36:40 +03:00
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
commands =
make docs SPHINXOPTS='-nW'