mirror of
https://gitlab.com/timvisee/send.git
synced 2024-11-14 23:22:36 +01:00
23 lines
529 B
INI
Executable File
23 lines
529 B
INI
Executable File
[tox]
|
|
envlist = integration-tests, flake8
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
skip_install = True
|
|
deps = -rpipenv.txt
|
|
commands =
|
|
pipenv install --skip-lock
|
|
pipenv run pytest -v --verify-base-url --driver Remote --capability browserName firefox --host selenium --html=send-test.html --self-contained-html {posargs}
|
|
|
|
[testenv:flake8]
|
|
commands =
|
|
pipenv install --skip-lock
|
|
pipenv run flake8 {posargs:.}
|
|
|
|
[flake8]
|
|
exclude = .eggs,.tox,docs,node_modules
|
|
|
|
[pytest]
|
|
base_url = http://web:1443
|
|
sensitive_url = mozilla\.(com|org)
|