-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #77 from Project-OMOTES/54-update-to-newest-versio…
…n-of-omotes-system-to-keep-integration-test-support 54: Rename computation-engine to omotes-system, fix integration with new setup approach for integration_tests and fix issue in job_submitter that an error result still led to a succeeding test.
- Loading branch information
Showing
16 changed files
with
60 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[submodule "computation_engine"] | ||
path = computation-engine-at-orchestrator | ||
url = [email protected]:Project-OMOTES/computation-engine.git | ||
[submodule "omotes-system"] | ||
path = omotes-system-at-orchestrator | ||
url = [email protected]:Project-OMOTES/omotes-system.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule computation-engine-at-orchestrator
deleted from
c62f98
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,16 @@ | ||
#!/bin/bash | ||
|
||
export CURRENT_WORKDIR=$PWD | ||
COMPUTATION_ENGINE="../computation-engine-at-orchestrator" | ||
ENV_FILE="${CURRENT_WORKDIR}/.env.test" | ||
DOCKER_COMPOSE_FILE="${COMPUTATION_ENGINE}/docker-compose.yml" | ||
DOCKER_COMPOSE_OVERRIDE_FILE="./docker-compose.override.yml" | ||
export ORCHESTRATOR_TEST_DIR=$PWD | ||
export OMOTES_SYSTEM="../omotes-system-at-orchestrator" | ||
export ORCHESTRATOR_DIR="${ORCHESTRATOR_TEST_DIR}/../" | ||
export TEST_WORKER_DIR="${ORCHESTRATOR_TEST_DIR}/test_worker/" | ||
export INTEGRATION_TESTS_DIR="${ORCHESTRATOR_TEST_DIR}/integration_tests/" | ||
export ENV_FILE="${ORCHESTRATOR_TEST_DIR}/.env.test" | ||
|
||
export COMPOSE_PROJECT_NAME=omotes_orchestrator_integration_tests | ||
export DOCKER_COMPOSE_SETUP_TEST_OVERRIDE="${OMOTES_SYSTEM}/docker-compose.yml -f ${OMOTES_SYSTEM}/docker-compose.override.setup.yml -f ${ORCHESTRATOR_TEST_DIR}/docker-compose.override.yml" | ||
export DOCKER_COMPOSE_TEST_OVERRIDE="${OMOTES_SYSTEM}/docker-compose.yml -f ${ORCHESTRATOR_TEST_DIR}/docker-compose.override.yml" | ||
|
||
export ORCHESTRATOR_DIR="${CURRENT_WORKDIR}/../" | ||
export TEST_WORKER_DIR="${CURRENT_WORKDIR}/test_worker/" | ||
export INTEGRATION_TESTS_DIR="${CURRENT_WORKDIR}/integration_tests/" | ||
export COMPOSE_PROJECT_NAME=omotes_orchestrator_integration_tests | ||
|
||
echo "Using docker compose files: ${DOCKER_COMPOSE_FILE} ${DOCKER_COMPOSE_OVERRIDE_FILE}" | ||
echo "Using docker compose files for setup: ${DOCKER_COMPOSE_SETUP_TEST_OVERRIDE}" | ||
echo "Using docker compose files for test: ${DOCKER_COMPOSE_TEST_OVERRIDE}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
omotes-sdk-python == 3.2.2 | ||
omotes-sdk-python == 3.2.3 | ||
python-dotenv ~= 1.0.0 | ||
pytest | ||
psycopg[binary,pool] ~= 3.2.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
omotes-sdk-python == 3.2.2 | ||
omotes-sdk-python == 3.2.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule omotes-system-at-orchestrator
added at
2eb6c9