Skip to content
Snippets Groups Projects
Select Git revision
  • cdf73d8f0bde764ebf76cf702998a3bb4200b858
  • master default protected
  • v2.0-dev protected
  • zikeliml/Task-96-dotExporterForAST
  • zikeliml/124-rework-tutorials
  • fma
  • fhennig/v2.0-deprecations
  • holzer-master-patch-46757
  • 66-absolute-access-is-probably-not-copied-correctly-after-_eval_subs
  • gpu_bufferfield_fix
  • hyteg
  • vectorization_sqrt_fix
  • target_dh_refactoring
  • const_fix
  • improved_comm
  • gpu_liveness_opts
  • release/1.3.7 protected
  • release/1.3.6 protected
  • release/2.0.dev0 protected
  • release/1.3.5 protected
  • release/1.3.4 protected
  • release/1.3.3 protected
  • release/1.3.2 protected
  • release/1.3.1 protected
  • release/1.3 protected
  • release/1.2 protected
  • release/1.1.1 protected
  • release/1.1 protected
  • release/1.0.1 protected
  • release/1.0 protected
  • release/0.4.4 protected
  • last/Kerncraft
  • last/OpenCL
  • last/LLVM
  • release/0.4.3 protected
  • release/0.4.2 protected
36 results

pytest.ini

Blame
  • pytest.ini 1.16 KiB
    [pytest]
    python_files = test_*.py *_test.py scenario_*.py
    norecursedirs = *.egg-info .git .cache .ipynb_checkpoints htmlcov
    addopts = --doctest-modules --durations=20  --cov-config pytest.ini
    markers =
           kerncraft: tests depending on kerncraft
           notebook: mark for notebooks
    
    [run]
    branch = True
    source = pystencils
             pystencils_tests
    
    omit = doc/*
           pystencils_tests/*
           setup.py
           conftest.py
           versioneer.py
           pystencils/jupytersetup.py
           pystencils/cpu/msvc_detection.py
           pystencils/sympy_gmpy_bug_workaround.py
           pystencils/cache.py
           pystencils/pacxx/benchmark.py
           pystencils/_version.py
    
    [report]
    exclude_lines =
           # Have to re-enable the standard pragma
           pragma: no cover
    
           def __repr__
           def _repr_html_
    
           # Don't complain if tests don't hit defensive assertion code:
           raise AssertionError
           raise NotImplementedError
           NotImplementedError()
           #raise ValueError
    
           # Don't complain if non-runnable code isn't run:
           if 0:
           if False:
           if __name__ == .__main__.:
    
    skip_covered = True
    fail_under = 87
    
    [html]
    directory = coverage_report