Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Stephan Seitz
pystencils
Commits
745be03a
Commit
745be03a
authored
Sep 02, 2019
by
Martin Bauer
Browse files
Merge branch 'pytest-html' into 'master'
Add pyhtml to tests and artifacts See merge request
pycodegen/pystencils!41
parents
cc060471
ffe8c9f2
Changes
3
Hide whitespace changes
Inline
Side-by-side
.gitignore
View file @
745be03a
...
...
@@ -12,3 +12,4 @@ _build
.cache
_local_tmp
RELEASE-VERSION
test-report
.gitlab-ci.yml
View file @
745be03a
...
...
@@ -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
:
...
...
setup.py
View file @
745be03a
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment