Skip to content
Closed
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
6 changes: 6 additions & 0 deletions .github/workflows/plot-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,12 @@ jobs:
pip install -e .
bash -x ./admin-tools/make-JSON-tables.sh
remake -x develop-full
- name: Install vectorizedplot
run: |
git clone --depth 1 https://github.com/Mathics3/Mathics3-Module-vectorizedplot.git
cd Mathics3-Module-vectorizedplot/
pip install -e .
cd ..
- name: Test Mathics
run: |
make plot-detailed-tests
4 changes: 3 additions & 1 deletion test/builtin/drawing/test_plot_detail.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@

from test.helper import session

from mathics.builtin.drawing import plot
from pymathics.vectorizedplot import plot

from mathics.core.expression import Expression
from mathics.core.symbols import Symbol
from mathics.core.util import print_expression_tree
Expand Down Expand Up @@ -377,6 +378,7 @@ def do_test_all():
# the tests above seem so far to be ok on pyodide, but generally they are
# simpler than these doc_tests
if not pyodide:
session.evaluate('LoadModule["pymathics.vectorizedplot"]')
for parms in all_yaml_tests_generator():
one_test(**parms)

Expand Down
Loading