Skip to content
Snippets Groups Projects
Select Git revision
  • 6583f355b13460617bf234c087e47927e05a4209
  • main default protected
  • f-sss4grpc
  • dev
  • 108-implement-rpc-call-for-server-side-scripting
  • f-windows-conan-create
  • f-to-string
  • f-update-requirements
  • f-related-projects
  • f-role
  • f-remote-path
  • f-rel-path
  • f-consol-message
  • v0.3.0
  • v0.2.2
  • v0.2.1
  • v0.2.0
  • v0.1.2
  • v0.1.1
  • v0.1
  • v0.0.19
  • v0.0.18
  • v0.0.16
  • v0.0.15
  • v0.0.10
  • v0.0.9
  • v0.0.8
  • v0.0.7
  • v0.0.6
  • v0.0.5
  • v0.0.4
  • v0.0.3
  • v0.0.2
33 results

DEPENDENCIES.md

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    tox.ini 698 B
    [tox]
    envlist=py39, py310, py311, py312, py313
    skip_missing_interpreters = true
    
    [pycodestyle]
    max_line_length = 100
    
    [flake8]
    max-line-length=100
    
    [testenv]
    setenv = PASSWORD_STORE_DIR = {env:HOME}/.password-store
    passenv = PYCAOSDBINI
    deps=pytest
        pytest-cov
        python-dateutil
        setuptools
        jsonschema
    commands_pre=pip install ../caosdb-pylib/
        python --version
        python -c "import linkahead; print(linkahead.version.version)"
    # Add "-x" to stop at first error.
    commands=pytest --cov=caosdb -vv {posargs}
    
    [pytest]
    markers =
        local_server: mark a test as requiring a local caosdb server
        slow: mark a test as slow (execution regularly takes 5s or longer)
    xfail_strict = True