-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathtox.ini
More file actions
42 lines (39 loc) · 736 Bytes
/
tox.ini
File metadata and controls
42 lines (39 loc) · 736 Bytes
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
# TOX CONFIGURATION
#
# pyenv virtualenv -p 3.8.10 py38
# pyenv virtualenv -p 3.9.5 py39
# pyenv virtualenv -p 3.10.0 py310
# pyenv virtualenv -p 3.11.0 py311
# pyenv virtualenv -p 3.12.0 py312
#
# pyenv shell py38 py39 py310 py311 py312
[tox]
envlist = doc,py{38,39,310,311,312}
[testenv:doc]
basepython = python3
changedir = docs
deps =
mypy
sphinx
sphinx-autobuild
flask-sphinx-themes
allowlist_externals = make
commands = make html
[testenv]
extras = hobbit,hobbit_core
deps =
psycopg2-binary
cx-oracle
pymysql
cryptography
mypy
pytest
pytest-cov
pytest-env
flake8
pipenv
blinker[flask]
commands =
flake8 .
# mypy hobbit hobbit_core tests
py.test {posargs}