File tree Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change @@ -283,11 +283,20 @@ jobs:
283283 python-jl --version
284284 julia --version
285285 julia -e 'using Pkg; Pkg.status(); Pkg.status(outdated=true)'
286+ julia -e 'using PyCall; math = pyimport("math"); print(math.sin(math.pi/4))'
286287 - run :
287288 name : Test PowerModels in PandaPower
288289 command : |
289290 source venv_test/bin/activate
290- python -m pytest -v venv_test/lib/python3.12/site-packages/pandapower/test/opf/test_pandamodels_runpm.py
291+ pyMm=$(python -c "import sys;print(f'{sys.version_info.major}.{sys.version_info.minor}')")
292+ python -m pytest -v venv_test/lib/python$pyMm/site-packages/pandapower/test/opf/test_pandamodels_runpm.py
293+ # use python-jl instead of python above if get a static libpython error
294+ - run :
295+ name : Test PandaModelsBackend
296+ command : |
297+ source venv_test/bin/activate
298+ pyMm=$(python -c "import sys;print(f'{sys.version_info.major}.{sys.version_info.minor}')")
299+ python venv_test/lib/python$pyMm/site-packages/pandamodelsbackend/tests/test_backend_api.py
291300 # use python-jl instead of python above if get a static libpython error
292301
293302 install39 :
@@ -438,5 +447,16 @@ workflows:
438447 version : 2.1
439448 test :
440449 jobs :
450+ - test
451+ - legacy_lightsim_old_pp
452+ - legacy_lightsim
453+ - test_chronix2grid
441454 - test_powermodels
442455
456+ install :
457+ jobs :
458+ - install38
459+ - install39
460+ - install310
461+ - install311
462+ - install312
You can’t perform that action at this time.
0 commit comments