Added dummy Python project to test the pipeline.

This commit is contained in:
Patrick Lehmann
2023-10-02 18:55:07 +02:00
parent 316eaa115e
commit 3cb8ca83a4
7 changed files with 371 additions and 0 deletions

13
tests/requirements.txt Normal file
View File

@@ -0,0 +1,13 @@
-r ../requirements.txt
# Coverage collection
Coverage >= 7.3
# Test Runner
pytest >= 7.4.0
pytest-cov >= 4.1.0
# Static Type Checking
mypy >= 1.5.0
typing_extensions >= 4.7.1
lxml>=4.9

40
tests/unit/Dummy.py Normal file
View File

@@ -0,0 +1,40 @@
# ==================================================================================================================== #
# _____ _ _ _ _ _ #
# _ __ _ |_ _|__ ___ | (_)_ __ __ _ / \ ___| |_(_) ___ _ __ ___ #
# | '_ \| | | || |/ _ \ / _ \| | | '_ \ / _` | / _ \ / __| __| |/ _ \| '_ \/ __| #
# | |_) | |_| || | (_) | (_) | | | | | | (_| |_ / ___ \ (__| |_| | (_) | | | \__ \ #
# | .__/ \__, ||_|\___/ \___/|_|_|_| |_|\__, (_)_/ \_\___|\__|_|\___/|_| |_|___/ #
# |_| |___/ |___/ #
# ==================================================================================================================== #
# Authors: #
# Patrick Lehmann #
# #
# License: #
# ==================================================================================================================== #
# Copyright 2017-2023 Patrick Lehmann - Bötzingen, Germany #
# #
# Licensed under the Apache License, Version 2.0 (the "License"); #
# you may not use this file except in compliance with the License. #
# You may obtain a copy of the License at #
# #
# http://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 #
# ==================================================================================================================== #
#
from unittest import TestCase
from pyDummy import Application
class Instantiation(TestCase):
def test_Application(self):
app = Application()
self.assertEqual(1, app.Value)