Skip to content
Snippets Groups Projects
Select Git revision
  • ceb44c89abf806105c4bdc1cf37f101a682ef810
  • master default protected
  • publish_python_package
  • AT5-374
  • AT5-373
  • AT5-370
  • ST-174
  • ST-85
  • ST94_Update_Pipfile
  • ST72_integrate_versioning_in_ci
  • test-code-climate
  • ST3_containerise_Python_device
  • ST59_Python_TANGO_device_to_be_demonstrated_as_part_of_PI_demo
13 results

setup.cfg

Blame
  • setup.cfg 664 B
    [metadata]
    description-file = README.md
    
    [aliases]
    # Define `python setup.py test`
    test=pytest
    
    [coverage:run]
    branch = True
    source = cspse
    
    [tool:pytest]
    testpaths = tests
    addopts = --verbose
              --cov=cspse 
              --json-report 
              --json-report-file=htmlcov/report.json 
              --cov-report=term 
              --cov-report=html 
              --cov-report=xml 
              --junitxml=build/reports/csp-lmc-subelement-unit-tests.xml
    
    junit_family=legacy
    console_output_style = progress
    
    [coverage:report]
    show_missing = True
    # Define `python setup.py build_sphinx`
    [build_sphinx]
    source-dir = docs
    build-dir = docs/_build
    all_files = 1
    builder = html