-
Notifications
You must be signed in to change notification settings - Fork 12
/
tox.ini
27 lines (23 loc) · 1021 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
# *****************************************************************
#
# (C) Copyright Merative US L.P. and others 2018, 2023
#
# SPDX-License-Identifier: Apache-2.0
#
# *****************************************************************
[tox]
envlist = py37, py38, py39, py310
[testenv:lint]
basepython = python3.7
deps = pylint
commands =
pylint --rcfile=.pylintrc acd_sdk/annotator_for_clinical_data acd_sdk/annotator_for_clinical_data/tests/unit acd_sdk/annotator_for_clinical_data/tests/integration
[testenv]
passenv = TOXENV, CI
commands =
py.test -v --cov=acd_sdk {toxinidir}/acd_sdk/annotator_for_clinical_data/tests/unit
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/requirements-dev.txt
usedevelop = True
exclude = .venv,.git,.tox,docs