-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
60 lines (52 loc) · 1.09 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
48
49
50
51
52
53
54
55
56
57
58
59
60
# tox (https://tox.readthedocs.io/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
envlist = py36,flake8,coverage,installation
skipsdist = True
[testenv]
setenv =
FIBER_DB_TYPE=test
FIBER_TEST_DB_PATH = ./tests/mock_data.db
ROBOTEHR_BASE_PATH=/tmp
ROBOTEHR_DB_TYPE=local
ROBOTEHR_DB_URI=sqlite:///:memory:
ROBOTEHR_WEBHOOK_URL='none'
deps =
-r{toxinidir}/requirements-dev.txt
commands =
python -m pytest tests/ --cov=robotehr
[testenv:flake8]
skip_install = True
basepython = python3.6
deps = flake8
commands =
flake8
[testenv:coverage]
commands =
coverage report
[testenv:installation]
deps =
-r{toxinidir}/requirements.txt
commands=
pip install -e .
[flake8]
exclude =
.git,
__pycache__,
.tox,
docs,
.eggs,
import-order-style = smarkets
application-import-names =
robotehr,
[coverage:run]
source =
.
[coverage:report]
include=
*
omit =
.tox/*,
tests/*,