From caadfb566f9de74ce0edbd7ba88ee6734fe4685b Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Wed, 27 Nov 2024 20:55:50 +0000 Subject: [PATCH] Explicitly run system tests against main branch of genie_python and ibex_bluesky_core --- run_tests.bat | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/run_tests.bat b/run_tests.bat index bad9af6..68b2073 100644 --- a/run_tests.bat +++ b/run_tests.bat @@ -1,6 +1,13 @@ setlocal call create_virtual_env.bat call %EPICS_ROOT%\stop_ibex_server.bat + +REM always run system tests against latest versions of genie_python and ibex_bluesky_core +python -m pip install genie_python[plot]@git+https://github.com/IsisComputingGroup/genie.git@main +if %errorlevel% NEQ 0 EXIT /B %errorlevel% +python -m pip install ibex_bluesky_core@git+https://github.com/IsisComputingGroup/ibex_bluesky_core.git@main +if %errorlevel% NEQ 0 EXIT /B %errorlevel% + python -u test_setup_teardown.py>base_line_memory.txt set exitcode=%errorlevel% IF %exitcode% NEQ 0 (