From 9f1dff904a6056fa28084e5182a77402c64803ba Mon Sep 17 00:00:00 2001 From: Taylor Salo Date: Fri, 17 Jan 2025 18:57:15 -0500 Subject: [PATCH] Downgrade connectome workbench version (#1358) --- .circleci/config.yml | 2 +- Dockerfile | 2 +- xcp_d/tests/run_local_tests.py | 7 +++++++ 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9c013c2a9..d469c4366 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,7 +5,7 @@ orbs: .dockersetup: &dockersetup docker: - - image: pennlinc/xcp_d_build:0.0.20 + - image: pennlinc/xcp_d_build:0.0.21 working_directory: /src/xcp_d runinstall: diff --git a/Dockerfile b/Dockerfile index 7a53d98ab..c0aa246e0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM pennlinc/xcp_d_build:0.0.20 +FROM pennlinc/xcp_d_build:0.0.21 # Install xcp_d COPY . /src/xcp_d diff --git a/xcp_d/tests/run_local_tests.py b/xcp_d/tests/run_local_tests.py index c9077ad0a..dd08501b9 100755 --- a/xcp_d/tests/run_local_tests.py +++ b/xcp_d/tests/run_local_tests.py @@ -32,6 +32,13 @@ def _get_parser(): required=False, default=None, ) + parser.add_argument( + '--check_path', + action='store_true', + help='Check if the path is correct.', + required=False, + default=False, + ) return parser