File: tox.ini

package info (click to toggle)
uc-micro-py 2.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 176 kB
  • sloc: python: 37; makefile: 5
file content (15 lines) | stat: -rw-r--r-- 356 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# To use tox, see https://tox.readthedocs.io
# Simply pip or conda install tox
# If you use conda, you may also want to install tox-conda
# then run `tox` or `tox -- {pytest args}`
# run in parallel using `tox -p`
[tox]
envlist = py312

[testenv]
deps = pytest
usedevelop = true

[testenv:py{310,311,312,313,314}]
extras = test
commands = pytest {posargs}