-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtox.ini
More file actions
66 lines (58 loc) · 1 KB
/
tox.ini
File metadata and controls
66 lines (58 loc) · 1 KB
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
61
62
63
64
65
66
[tox]
envlist = lint, check, docs, py312, py313
isolated_build = True
parallel_show_output = True
[tox:.package]
basepython = python3
[testenv]
deps =
pytest
commands =
pip install .[test]
pytest -vv
[testenv:py312]
basepython = python3.12
[testenv:py313]
basepython = python3.13
[testenv:lint]
basepython = python3.12
deps = ruff
commands = ruff check ocean tests
[testenv:check]
basepython = python3.12
deps =
mypy
pyright
anytree
gurobipy
numpy
ortools
pandas
pandas-stubs
pydantic
pytest
python-sat
scikit-learn
scipy
scipy-stubs
xgboost
commands =
pip install --upgrade pyright
mypy ocean tests
pyright ocean tests
[testenv:coverage]
basepython = python3.12
deps =
pytest
coverage
commands =
pip install .[test]
coverage run -m pytest -vv
coverage report
coverage xml
coverage html
[testenv:docs]
basepython = python3.12
extras = docs
commands =
sphinx-build -W -b html docs docs/_build/html