-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- rename packages to fix mypy
- Loading branch information
Showing
122 changed files
with
518 additions
and
959 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#!/bin/bash | ||
# Copyright (c) 2023 Robert Bosch GmbH | ||
# | ||
# This program and the accompanying materials are made available under the | ||
# terms of the Apache License, Version 2.0 which is available at | ||
# https://www.apache.org/licenses/LICENSE-2.0. | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
# License for the specific language governing permissions and limitations | ||
# under the License. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
echo "#######################################################" | ||
echo "### Install python requirements ###" | ||
echo "#######################################################" | ||
# Update pip before installing requirements | ||
pip3 install --upgrade pip | ||
REQUIREMENTS="runtime_k3d/src/requirements.txt" | ||
if [ -f $REQUIREMENTS ]; then | ||
pip3 install -r $REQUIREMENTS | ||
fi | ||
REQUIREMENTS="runtime_kanto/src/requirements.txt" | ||
if [ -f $REQUIREMENTS ]; then | ||
pip3 install -r $REQUIREMENTS | ||
fi | ||
# Dependencies for the app | ||
REQUIREMENTS="runtime_local/src/requirements.txt" | ||
if [ -f $REQUIREMENTS ]; then | ||
pip3 install -r $REQUIREMENTS | ||
fi | ||
|
||
|
||
echo "#######################################################" | ||
echo "### Install test requirements ###" | ||
echo "#######################################################" | ||
# Update pip before installing requirements | ||
pip3 install --upgrade pip | ||
REQUIREMENTS="runtime_k3d/test/requirements.txt" | ||
if [ -f $REQUIREMENTS ]; then | ||
pip3 install -r $REQUIREMENTS | ||
fi | ||
REQUIREMENTS="runtime_kanto/test/requirements.txt" | ||
if [ -f $REQUIREMENTS ]; then | ||
pip3 install -r $REQUIREMENTS | ||
fi | ||
# Dependencies for the app | ||
REQUIREMENTS="runtime_local/test/requirements.txt" | ||
if [ -f $REQUIREMENTS ]; then | ||
pip3 install -r $REQUIREMENTS | ||
fi |
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,10 +1,10 @@ | ||
.DS_Store | ||
__pycache__ | ||
|
||
runtime-k3d/src/runtime/deployment/config/helm/templates/values.yaml | ||
runtime_k3d/src/runtime/deployment/config/helm/templates/values.yaml | ||
*.egg-info | ||
dist | ||
build | ||
logs | ||
results | ||
helm | ||
.coverage |
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,19 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Python: Debug Tests", | ||
"type": "python", | ||
"request": "launch", | ||
"program": "${file}", | ||
"purpose": [ | ||
"debug-test" | ||
], | ||
"console": "integratedTerminal", | ||
"justMyCode": false | ||
} | ||
] | ||
} |
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,3 @@ | ||
# Desired State Generator | ||
|
||
Generate a desired state manifest to be used by [ETAS' PANTARIS](https://www.etas.com/en/products/pantaris-products.php) solution. |
File renamed without changes.
File renamed without changes.
Oops, something went wrong.