forked from locustio/locust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
47 lines (42 loc) · 1.29 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
[tox]
skipsdist = True
envlist =
flake8
black
mypy
py{37,38,39,310,311}
[flake8]
extend-exclude = build,examples/issue_*.py,src/readthedocs-sphinx-search/
ignore = E741,F401,W503,E402,E501,E731,E713,E203
per-file-ignores =
locust/test/*: F841
examples/*: F841
*.pyi: E302,E704
[testenv]
deps =
mock
retry
pyquery
cryptography
allowlist_externals =
bash
timeout
grep
commands =
python3 -m pip install .
python3 -m unittest discover []
; Disable these tests for now, because they are breaking. When someone has time they should be converted into regular unit tests
; bash -ec "PYTHONUNBUFFERED=1 timeout 20s python3 examples/rest.py >{temp_dir}/out.txt 2>/{temp_dir}/err.txt || true"
; grep -qm 1 'my custom error message with response text, response was {"args"' {temp_dir}/out.txt
; grep -qm 1 'ZeroDivisionError: division by zero at.*Response was {"ar' {temp_dir}/out.txt
; bash -ec '! grep . {temp_dir}/err.txt' # should be empty
bash -ec 'PYTHONUNBUFFERED=1 python3 examples/debugging_advanced.py | grep done'
[testenv:black]
deps = black==23.1.0
commands = black --check .
[testenv:flake8]
deps = flake8==6.0.0
commands = flake8 . --count --show-source --statistics
[testenv:mypy]
deps = mypy==0.981
commands = mypy locust/