Skip to content

Commit bc66704

Browse files
committed
update workflow names. add scikit-image dependency. Make the test run always
1 parent 264d07d commit bc66704

File tree

6 files changed

+8
-9
lines changed

6 files changed

+8
-9
lines changed

.github/workflows/MSWindows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Mathics3-Module-hello (MS Windows)
1+
name: Mathics3-Module-vectorizedplot (MS Windows)
22

33
on:
44
push:

.github/workflows/MacOS.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Mathics3 Module hello (macOS)
1+
name: Mathics3 Module vectorizedplot (macOS)
22

33
on:
44
push:

.github/workflows/Ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Mathics3-Module-hello (ubuntu)
1+
name: Mathics3-Module-vectorizedplot (ubuntu)
22

33
on:
44
push:

pymathics/vectorizedplot/__init__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,12 @@
2323
"""
2424

2525

26-
from pymathics.vectorizedplot.plot_plot3d.py import SphericalPlot3D
26+
# from pymathics.vectorizedplot.plot_plot3d.py import SphericalPlot3D
2727
from pymathics.vectorizedplot.version import __version__
2828

29-
__all__ = ("__version__", "SphericalPlot3D", "pymathics_version_data")
29+
__all__ = ("__version__",
30+
#"SphericalPlot3D",
31+
"pymathics_version_data")
3032

3133
# To be recognized as an external mathics module, the following variable
3234
# is required:

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ dependencies = [
1616
"Mathics3-Module-Base >= 9.0.0",
1717
"Mathics3 >= 9.0.0",
1818
"palettable",
19+
"scikit-image",
1920
]
2021
requires-python = ">=3.10"
2122
readme = "README.rst"

test/test_plot_detail.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -354,10 +354,6 @@ def all_yaml_tests_generator(fns=None):
354354
yield from yaml_tests_generator(fn)
355355

356356

357-
@pytest.mark.skipif(
358-
not os.environ.get("MATHICS_PLOT_DETAILED_TESTS", False),
359-
reason="Run just if required",
360-
)
361357
@pytest.mark.skipif(
362358
pyodide is not None,
363359
reason="Does not work in Pyodide",

0 commit comments

Comments
 (0)