From 66772d61b0773ae457da4ac01f05b9deaa023c17 Mon Sep 17 00:00:00 2001 From: Lucian Petrut Date: Wed, 8 Jan 2025 10:53:07 +0200 Subject: [PATCH] Run "tox -e format", bumping copyright headers (#931) We need to bump the copyright headers as expected by the tox "format" job: Copyright 2025 Canonical, Ltd. --- tests/integration/tests/conftest.py | 2 +- tests/integration/tests/test_annotations.py | 2 +- tests/integration/tests/test_bootstrap.py | 2 +- tests/integration/tests/test_cilium_e2e.py | 2 +- tests/integration/tests/test_cleanup.py | 2 +- tests/integration/tests/test_clustering.py | 2 +- tests/integration/tests/test_clustering_race.py | 2 +- tests/integration/tests/test_config_propagation.py | 2 +- tests/integration/tests/test_control_plane_taints.py | 2 +- tests/integration/tests/test_dns.py | 2 +- tests/integration/tests/test_etcd.py | 2 +- tests/integration/tests/test_gateway.py | 2 +- tests/integration/tests/test_ingress.py | 2 +- tests/integration/tests/test_loadbalancer.py | 2 +- tests/integration/tests/test_metrics_server.py | 2 +- tests/integration/tests/test_network.py | 2 +- tests/integration/tests/test_networking.py | 2 +- tests/integration/tests/test_smoke.py | 2 +- tests/integration/tests/test_storage.py | 2 +- tests/integration/tests/test_strict_interfaces.py | 2 +- tests/integration/tests/test_util/config.py | 2 +- tests/integration/tests/test_util/etcd.py | 2 +- tests/integration/tests/test_util/harness/__init__.py | 2 +- tests/integration/tests/test_util/harness/base.py | 2 +- tests/integration/tests/test_util/harness/juju.py | 2 +- tests/integration/tests/test_util/harness/lxd.py | 2 +- tests/integration/tests/test_util/harness/multipass.py | 2 +- tests/integration/tests/test_util/registry.py | 2 +- tests/integration/tests/test_util/snap.py | 2 +- tests/integration/tests/test_util/tags.py | 2 +- tests/integration/tests/test_util/util.py | 2 +- tests/integration/tests/test_version_upgrades.py | 2 +- 32 files changed, 32 insertions(+), 32 deletions(-) diff --git a/tests/integration/tests/conftest.py b/tests/integration/tests/conftest.py index 8022b53ce..03c5d8739 100644 --- a/tests/integration/tests/conftest.py +++ b/tests/integration/tests/conftest.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import itertools import logging diff --git a/tests/integration/tests/test_annotations.py b/tests/integration/tests/test_annotations.py index 48c327c91..dd586ad7e 100644 --- a/tests/integration/tests/test_annotations.py +++ b/tests/integration/tests/test_annotations.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import logging from typing import List diff --git a/tests/integration/tests/test_bootstrap.py b/tests/integration/tests/test_bootstrap.py index 0037ae7fb..cbd5ed3ff 100644 --- a/tests/integration/tests/test_bootstrap.py +++ b/tests/integration/tests/test_bootstrap.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # from typing import List diff --git a/tests/integration/tests/test_cilium_e2e.py b/tests/integration/tests/test_cilium_e2e.py index 48efec717..bedf98c8e 100644 --- a/tests/integration/tests/test_cilium_e2e.py +++ b/tests/integration/tests/test_cilium_e2e.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import logging import os diff --git a/tests/integration/tests/test_cleanup.py b/tests/integration/tests/test_cleanup.py index f82dae1f5..7d39a4672 100644 --- a/tests/integration/tests/test_cleanup.py +++ b/tests/integration/tests/test_cleanup.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import logging import os diff --git a/tests/integration/tests/test_clustering.py b/tests/integration/tests/test_clustering.py index caf72b9b9..51514e125 100644 --- a/tests/integration/tests/test_clustering.py +++ b/tests/integration/tests/test_clustering.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import datetime import logging diff --git a/tests/integration/tests/test_clustering_race.py b/tests/integration/tests/test_clustering_race.py index f29d79a2d..bd7cec5aa 100644 --- a/tests/integration/tests/test_clustering_race.py +++ b/tests/integration/tests/test_clustering_race.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # from typing import List diff --git a/tests/integration/tests/test_config_propagation.py b/tests/integration/tests/test_config_propagation.py index e1cf7be73..d0d3d9d82 100644 --- a/tests/integration/tests/test_config_propagation.py +++ b/tests/integration/tests/test_config_propagation.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import logging from typing import List diff --git a/tests/integration/tests/test_control_plane_taints.py b/tests/integration/tests/test_control_plane_taints.py index 116574df2..7c4f93e36 100644 --- a/tests/integration/tests/test_control_plane_taints.py +++ b/tests/integration/tests/test_control_plane_taints.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import logging import time diff --git a/tests/integration/tests/test_dns.py b/tests/integration/tests/test_dns.py index a507ecbbd..a06594fd7 100644 --- a/tests/integration/tests/test_dns.py +++ b/tests/integration/tests/test_dns.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import logging from typing import List diff --git a/tests/integration/tests/test_etcd.py b/tests/integration/tests/test_etcd.py index d7604d6d0..f6dbebb55 100644 --- a/tests/integration/tests/test_etcd.py +++ b/tests/integration/tests/test_etcd.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import json import logging diff --git a/tests/integration/tests/test_gateway.py b/tests/integration/tests/test_gateway.py index 72a332ff2..915777450 100644 --- a/tests/integration/tests/test_gateway.py +++ b/tests/integration/tests/test_gateway.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import json import logging diff --git a/tests/integration/tests/test_ingress.py b/tests/integration/tests/test_ingress.py index fc6a4e55d..06b9797df 100644 --- a/tests/integration/tests/test_ingress.py +++ b/tests/integration/tests/test_ingress.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import json import logging diff --git a/tests/integration/tests/test_loadbalancer.py b/tests/integration/tests/test_loadbalancer.py index 88cefe88a..7182fce6d 100644 --- a/tests/integration/tests/test_loadbalancer.py +++ b/tests/integration/tests/test_loadbalancer.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import logging from pathlib import Path diff --git a/tests/integration/tests/test_metrics_server.py b/tests/integration/tests/test_metrics_server.py index b88982160..6bee40342 100644 --- a/tests/integration/tests/test_metrics_server.py +++ b/tests/integration/tests/test_metrics_server.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import logging from typing import List diff --git a/tests/integration/tests/test_network.py b/tests/integration/tests/test_network.py index ea5fe65f1..0cf6881ac 100644 --- a/tests/integration/tests/test_network.py +++ b/tests/integration/tests/test_network.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import json import logging diff --git a/tests/integration/tests/test_networking.py b/tests/integration/tests/test_networking.py index 1317d7458..0d0a3d75f 100644 --- a/tests/integration/tests/test_networking.py +++ b/tests/integration/tests/test_networking.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import logging from ipaddress import IPv4Address, IPv6Address, ip_address diff --git a/tests/integration/tests/test_smoke.py b/tests/integration/tests/test_smoke.py index 7a8ba4b65..b7128e261 100644 --- a/tests/integration/tests/test_smoke.py +++ b/tests/integration/tests/test_smoke.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import json import logging diff --git a/tests/integration/tests/test_storage.py b/tests/integration/tests/test_storage.py index 028b93d88..62e3f6087 100644 --- a/tests/integration/tests/test_storage.py +++ b/tests/integration/tests/test_storage.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import json import logging diff --git a/tests/integration/tests/test_strict_interfaces.py b/tests/integration/tests/test_strict_interfaces.py index 3d6f77b33..fb722f67f 100644 --- a/tests/integration/tests/test_strict_interfaces.py +++ b/tests/integration/tests/test_strict_interfaces.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import logging from typing import List diff --git a/tests/integration/tests/test_util/config.py b/tests/integration/tests/test_util/config.py index 7da84e6cd..e7e7f4fa1 100644 --- a/tests/integration/tests/test_util/config.py +++ b/tests/integration/tests/test_util/config.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import json import os diff --git a/tests/integration/tests/test_util/etcd.py b/tests/integration/tests/test_util/etcd.py index d53e8ee66..b020cc943 100644 --- a/tests/integration/tests/test_util/etcd.py +++ b/tests/integration/tests/test_util/etcd.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import logging from string import Template diff --git a/tests/integration/tests/test_util/harness/__init__.py b/tests/integration/tests/test_util/harness/__init__.py index 2198fcd2e..df6eea50e 100644 --- a/tests/integration/tests/test_util/harness/__init__.py +++ b/tests/integration/tests/test_util/harness/__init__.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # from test_util.harness.base import Harness, HarnessError, Instance from test_util.harness.juju import JujuHarness diff --git a/tests/integration/tests/test_util/harness/base.py b/tests/integration/tests/test_util/harness/base.py index d928afa70..612e29d2d 100644 --- a/tests/integration/tests/test_util/harness/base.py +++ b/tests/integration/tests/test_util/harness/base.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import subprocess from functools import cached_property, partial diff --git a/tests/integration/tests/test_util/harness/juju.py b/tests/integration/tests/test_util/harness/juju.py index ad89e956e..a6716ec92 100644 --- a/tests/integration/tests/test_util/harness/juju.py +++ b/tests/integration/tests/test_util/harness/juju.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import json import logging diff --git a/tests/integration/tests/test_util/harness/lxd.py b/tests/integration/tests/test_util/harness/lxd.py index 43bcef980..34203be75 100644 --- a/tests/integration/tests/test_util/harness/lxd.py +++ b/tests/integration/tests/test_util/harness/lxd.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import logging import os diff --git a/tests/integration/tests/test_util/harness/multipass.py b/tests/integration/tests/test_util/harness/multipass.py index 218b3eb17..ea8a60c80 100644 --- a/tests/integration/tests/test_util/harness/multipass.py +++ b/tests/integration/tests/test_util/harness/multipass.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import logging import os diff --git a/tests/integration/tests/test_util/registry.py b/tests/integration/tests/test_util/registry.py index 8bc260bc4..4beb1362f 100644 --- a/tests/integration/tests/test_util/registry.py +++ b/tests/integration/tests/test_util/registry.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import logging import os diff --git a/tests/integration/tests/test_util/snap.py b/tests/integration/tests/test_util/snap.py index f64c64cb9..9a7626ced 100644 --- a/tests/integration/tests/test_util/snap.py +++ b/tests/integration/tests/test_util/snap.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import json import logging diff --git a/tests/integration/tests/test_util/tags.py b/tests/integration/tests/test_util/tags.py index 49f0204df..6aef07a68 100644 --- a/tests/integration/tests/test_util/tags.py +++ b/tests/integration/tests/test_util/tags.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # from pytest_tagging import combine_tags diff --git a/tests/integration/tests/test_util/util.py b/tests/integration/tests/test_util/util.py index a403c41b5..30192a6c3 100644 --- a/tests/integration/tests/test_util/util.py +++ b/tests/integration/tests/test_util/util.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import ipaddress import json diff --git a/tests/integration/tests/test_version_upgrades.py b/tests/integration/tests/test_version_upgrades.py index b4c289934..6caaa4546 100644 --- a/tests/integration/tests/test_version_upgrades.py +++ b/tests/integration/tests/test_version_upgrades.py @@ -1,5 +1,5 @@ # -# Copyright 2024 Canonical, Ltd. +# Copyright 2025 Canonical, Ltd. # import logging from typing import List