From 79242766de11086474f1bc09d1528d893309bdc4 Mon Sep 17 00:00:00 2001 From: Philip O'Toole Date: Mon, 4 Dec 2023 19:55:09 -0500 Subject: [PATCH] Change directory before running test --- .circleci/config.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d13311ff..54c1ebc5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -183,7 +183,9 @@ jobs: - run: go install -tags osusergo,netgo,sqlite_omit_load_extension -ldflags="-extldflags=-static" ./... - run: - command: python3 system_test/e2e/upgrade.py + command: | + cd system_test/e2e + python3 upgrade.py environment: RQLITED_PATH: /home/circleci/go/bin/rqlited resource_class: large