forked from RediSearch/redisearch-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
37 lines (33 loc) · 807 Bytes
/
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
[tox]
skipsdist = True
envlist = linters,cover,test_with_coverage,py27,py36,py37,py38,py39
[flake8]
max-complexity = 10
ignore = E127,E265,E266,E301,E501
srcdir = redisearch
show-source = true
exclude =.git,.tox,dist,doc,*/__pycache__/*,*test*.py
[testenv:cover]
whitelist_externals = find
commands_pre =
find . -type f -name "*.pyc" -delete
setenv =
REDIS_PORT = 6379
commands =
coverage run test/test.py
coverage run -a test/test_builder.py
codecov
[testenv:test_without_coverage]
whitelist_externals = find
commands_pre =
find . -type f -name "*.pyc" -delete
setenv =
REDIS_PORT = 6379
commands =
python test/test.py
python test/test_builder.py
[testenv:linters]
commands =
# flake8 --show-source
vulture redisearch --min-confidence 80
bandit redisearch/**