Skip to content

Commit af160ca

Browse files
committed
other lanes
1 parent de5cd2a commit af160ca

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

.circleci/config.yml

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)