From 1e4dd705d5ab7cd24510f6db754605b2bf4fac8c Mon Sep 17 00:00:00 2001 From: Jennifer Power Date: Mon, 28 Aug 2023 16:59:56 -0400 Subject: [PATCH] chore: adds package information for test packages Signed-off-by: Jennifer Power --- tests/__init__.py | 16 ++++++++++++++++ tests/trestlebot/__init__.py | 16 ++++++++++++++++ tests/trestlebot/tasks/__init__.py | 16 ++++++++++++++++ tests/trestlebot/tasks/authored/__init__.py | 16 ++++++++++++++++ 4 files changed, 64 insertions(+) diff --git a/tests/__init__.py b/tests/__init__.py index e69de29b..74f70778 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -0,0 +1,16 @@ +#!/usr/bin/python + +# Copyright 2023 Red Hat, Inc. +# +# 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. +"""Test package.""" diff --git a/tests/trestlebot/__init__.py b/tests/trestlebot/__init__.py index e69de29b..740d8d55 100644 --- a/tests/trestlebot/__init__.py +++ b/tests/trestlebot/__init__.py @@ -0,0 +1,16 @@ +#!/usr/bin/python + +# Copyright 2023 Red Hat, Inc. +# +# 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. +"""Test package. for trestlebot top-level logic.""" diff --git a/tests/trestlebot/tasks/__init__.py b/tests/trestlebot/tasks/__init__.py index e69de29b..5f0c523a 100644 --- a/tests/trestlebot/tasks/__init__.py +++ b/tests/trestlebot/tasks/__init__.py @@ -0,0 +1,16 @@ +#!/usr/bin/python + +# Copyright 2023 Red Hat, Inc. +# +# 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. +"""Test tasks package.""" diff --git a/tests/trestlebot/tasks/authored/__init__.py b/tests/trestlebot/tasks/authored/__init__.py index e69de29b..1f6d92c3 100644 --- a/tests/trestlebot/tasks/authored/__init__.py +++ b/tests/trestlebot/tasks/authored/__init__.py @@ -0,0 +1,16 @@ +#!/usr/bin/python + +# Copyright 2023 Red Hat, Inc. +# +# 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. +"""Test authored package."""