Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cscs-checks/apps/jupyter/check_ipcmagic.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import reframe as rfm

from hpctestlib.sciapps.jupyter.ipcmagic import ipcmagic_check
from hpctestlib.interactive.jupyter.ipcmagic import ipcmagic_check


@rfm.simple_test
Expand Down
2 changes: 1 addition & 1 deletion cscs-checks/apps/spark/spark_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

import reframe as rfm

from hpctestlib.data_analytics.spark.compute_pi import compute_pi_check
from hpctestlib.data_analytics.spark.spark_checks import compute_pi_check


@rfm.simple_test
Expand Down
14 changes: 11 additions & 3 deletions docs/hpctestlib.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,15 @@ This is a collection of generic tests that you can either run out-of-the-box by
Scientific Applications
-----------------------

.. automodule:: hpctestlib.apps.amber.nve
.. automodule:: hpctestlib.sciapps.amber.nve
:members:
:show-inheritance:


Data Analytics
--------------

.. automodule:: hpctestlib.data_analytics.spark.spark_checks
:members:
:show-inheritance:

Expand All @@ -21,8 +29,8 @@ Python


Interactive Computing
-----------------------
---------------------

.. automodule:: hpctestlib.apps.jupyter.ipcmagic
.. automodule:: hpctestlib.interactive.jupyter.ipcmagic
:members:
:show-inheritance:
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class compute_pi_check(rfm.RunOnlyRegressionTest, pin_prefix=True):

#: Parameter encoding the variant of the test.
#:
#: :type:`str`
#: :type: :class:`str`
#: :values: ``['spark', 'pyspark']``
variant = parameter(['spark', 'pyspark'])

Expand Down