Skip to content
Snippets Groups Projects
Commit ef496986 authored by Stephan Seitz's avatar Stephan Seitz Committed by Stephan Seitz
Browse files

Add pyhtml to tests and artifacts

parent ddbe84da
Branches
Tags
No related merge requests found
......@@ -17,7 +17,7 @@ tests-and-coverage:
- mkdir -p ~/.config/matplotlib
- echo "backend:template" > ~/.config/matplotlib/matplotlibrc
- mkdir public
- py.test -v -n $NUM_CORES --cov-report html --cov-report term --cov=. -m "not longrun"
- py.test -v -n $NUM_CORES --cov-report html --cov-report term --cov=. -m "not longrun" --html test-report/index.html
tags:
- docker
- cuda
......@@ -26,6 +26,7 @@ tests-and-coverage:
when: always
paths:
- coverage_report
- test-report
# Nightly test - runs "long run" jobs only
test-longrun:
......@@ -38,7 +39,7 @@ test-longrun:
- export NUM_CORES=$(nproc --all)
- mkdir -p ~/.config/matplotlib
- echo "backend:template" > ~/.config/matplotlib/matplotlibrc
- py.test -v -n $NUM_CORES --cov-report html --cov-report term --cov=.
- py.test -v -n $NUM_CORES --cov-report html --cov-report term --cov=. --html test-report/index.html
tags:
- docker
- cuda
......@@ -46,6 +47,7 @@ test-longrun:
artifacts:
paths:
- coverage_report
- test-report
# Minimal tests in windows environment
minimal-windows:
......
......@@ -117,7 +117,16 @@ setup(name='pystencils',
'doc': ['sphinx', 'sphinx_rtd_theme', 'nbsphinx',
'sphinxcontrib-bibtex', 'sphinx_autodoc_typehints', 'pandoc'],
},
tests_require=['pytest', 'pytest-cov', 'pytest-xdist', 'flake8', 'nbformat', 'nbconvert', 'ipython'],
tests_require=['pytest',
'pytest-cov',
'pytest-html',
'ansi2html',
'pytest-xdist',
'flake8',
'nbformat',
'nbconvert',
'ipython'],
python_requires=">=3.6",
cmdclass={
'quicktest': SimpleTestRunner
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment