Skip to content
Snippets Groups Projects
Select Git revision
  • 4ef559b2a0e08e4b3235d7a82c64d1d582b03497
  • main default protected
  • f-yaml-parser-enums
  • dev protected
  • f-fix-paths
  • f-fix-validate-to-dict
  • f-labfolder-converter
  • f-state-machine-script
  • f-xlsx-converter-warnings-errors
  • f-rename
  • f-extra-deps
  • f-more-jsonschema-export
  • f-henrik
  • f-fix-89
  • f-trigger-advanced-user-tools
  • f-real-rename-test
  • f-linkahead-rename
  • f-register-integrationtests
  • f-fix-id
  • f-h5-files
  • f-json-schema
  • v0.14.0
  • v0.13.0
  • v0.12.0
  • v0.11.0
  • v0.10.0-numpy2
  • v0.10.0
  • v0.9.0
  • v0.8.0
  • v0.7.0
  • v0.6.1
  • v0.6.0
  • v0.5.0
  • v0.4.1
  • v0.4.0
  • v0.3.1
  • v0.3.0
37 results

tox.ini

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    tox.ini 456 B
    [tox]
    envlist=py37, py38, py39, py310, py311
    skip_missing_interpreters = true
    
    [testenv]
    deps=nose
        pandas
        git+https://gitlab.indiscale.com/caosdb/src/caosdb-pylib.git@dev
        pytest
        pytest-cov
        gitignore-parser
        openpyxl >= 3.0.7
        xlrd == 1.2
        h5py
    commands=py.test --cov=caosadvancedtools --cov-report=html:.tox/cov_html -vv {posargs}
    
    [flake8]
    max-line-length=100
    
    [pytest]
    testpaths = unittests
    addopts = -vv
    xfail_strict = True