Skip to content
Snippets Groups Projects
Select Git revision
  • 1b5e289896702204467d5e26ed02637c181d3f0d
  • master default protected
  • ci39
  • ci39-python12
  • py39
  • issue#14
  • endianness
  • bugs_i686
  • bug_test_instfreqplot_arm64
  • bug_test_tfplot
  • gitlab-ci
  • debian
  • v1.1.2
  • v1.1.1
  • v1.0.17
  • v1.0.16
  • v1.0.15
  • v1.0.14
  • v1.0.13
  • v1.0.12
  • v1.0.9
  • v1.0.8
  • v1.0.7
  • v1.0.6
  • v1.0.0
25 results

setup.cfg

Blame
  • user avatar
    Denis Arrivault authored
    3606a1be
    History
    setup.cfg 660 B
    [nosetests]
    #verbosity=1
    where=./ltfatpy
    with-xunit=1
    xunit-file=./build/nosetests.xml
    with-coverage=1
    cover-package=ltfatpy
    cover-erase=1
    cover-html=1
    cover-html-dir=../build/htmlcov
    
    [pytest]
    # Specifies a minimal pytest version required for running tests.
    minversion = 2.6
    # Specifies the options
    addopts = --resultlog=pytests_results.txt -k "not _old" --cov-report term-missing --cov=ltfatpy
    # Set the directory basename patterns to avoid when recursing for test discovery.
    norecursedirs = .git bin build cmake-modules ltfat_C_kernel sandboxes .settings
    
    [coverage run]
    source=./ltfatpy
    omit = ./ltfatpy/tests/*
    [coverage html]
    directory=../build/htmlcov