forked from python-microscopy/python-microscopy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.toml
More file actions
43 lines (39 loc) · 825 Bytes
/
tox.toml
File metadata and controls
43 lines (39 loc) · 825 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
43
# Still a WIP
requires = ["tox >= 4.0.0"]
envlist = ["py39"]
#envlist = ["py38", "py39", "py310", "py311", "py312"]
[testenv]
#usedevelop = true
deps = [
"meson-python",
"numpy",
"cython",
"pytest",
"pytest-cov",
"pytest-mock",
"pytest-asyncio",
"scipy",
"matplotlib", #<=3.2.* # matplotlib >=3.3.0 requires numpy >=1.15 (and pip isn't sensible enough to recognise this)
"tables",
"traits",
"traitsui",
"pillow",
"cython",
"toposort",
"pyfftw",
"cherrypy",
"scikit-image",
"scikit-learn",
"zeroconf",
"requests",
"pyyaml",
"psutil",
"ujson",
"jinja2",
"six",
"future",
"cython",
]
commands =[["pytest", "--cov=PYME", "--cov-report=term-missing", "--cov-report=html", "tests"],
]
[testenv.py39]