Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
tox.ini 311 B
[tox]
envlist=py37, py38, py39, py310, py311
skip_missing_interpreters = true

[testenv]
deps = .
    nose
    pytest
    pytest-cov
    jsonschema>=4.4.0
commands=py.test --cov=caosdb -vv {posargs}

[flake8]
max-line-length=100

[pytest]
testpaths = unittests
xfail_strict = True
addopts = -x -vv --cov=caosdb