-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
557c5fd
commit 387709d
Showing
7 changed files
with
224 additions
and
69 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
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Copyright (c) 2024 Robert Bosch Manufacturing Solutions GmbH | ||
# | ||
# See the AUTHORS file(s) distributed with this work for additional | ||
# information regarding authorship. | ||
# | ||
# This Source Code Form is subject to the terms of the Mozilla Public | ||
# License, v. 2.0. If a copy of the MPL was not distributed with this | ||
# file, You can obtain one at https://mozilla.org/MPL/2.0/. | ||
# | ||
# SPDX-License-Identifier: MPL-2.0 | ||
|
||
from os.path import join | ||
from string import Template | ||
|
||
|
||
SAMM_VERSION = "2.7.0" | ||
|
||
|
||
class SAMMCliConstants: | ||
BASE_PATH = Template("https://github.com/eclipse-esmf/esmf-sdk/releases/download/v$version_number/$file_name") | ||
LINUX_FILE_NAME = Template("samm-cli-$version_number-linux-x86_64.tar.gz") | ||
VERSION = SAMM_VERSION | ||
WIN_FILE_NAME = Template("samm-cli-$version_number-windows-x86_64.zip") | ||
|
||
|
||
class TestModelConstants: | ||
FOLDER_TO_EXTRACT = "valid" | ||
MAVEN_URL = Template( | ||
"https://repo1.maven.org/maven2/org/eclipse/esmf/esmf-test-aspect-models/$version_number/" | ||
"esmf-test-aspect-models-$version_number.jar" | ||
) | ||
TEST_MODELS_PATH = join("tests", "integration", "java_models", "resources") | ||
VERSION = SAMM_VERSION |
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
Oops, something went wrong.