Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Explicitly run system tests against main branch of genie_python and ibex_bluesky_core #118

Merged
merged 1 commit into from
Nov 28, 2024
Merged
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
7 changes: 7 additions & 0 deletions run_tests.bat
Original file line number Diff line number Diff line change
@@ -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 (
Expand Down