summaryrefslogtreecommitdiff
path: root/tests/integration_tests/modules/test_timezone.py
diff options
context:
space:
mode:
authorJames Falcon <james.falcon@canonical.com>2021-11-16 18:04:57 -0600
committerGitHub <noreply@github.com>2021-11-16 17:04:57 -0700
commit8c52bb3fc530742fce50f7f1061a24f3c453ef94 (patch)
tree85e181856481b93163a57110b953ae16d844e47c /tests/integration_tests/modules/test_timezone.py
parentf0af9f78796ad73bfc2f8016b9bf744da2f12761 (diff)
downloadvyos-cloud-init-8c52bb3fc530742fce50f7f1061a24f3c453ef94.tar.gz
vyos-cloud-init-8c52bb3fc530742fce50f7f1061a24f3c453ef94.zip
integration_test: Speed up CI run time (#1111)
Move more tests into test_combined.py and remove the CI mark from module tests that aren't updated often or don't represent core functionality.
Diffstat (limited to 'tests/integration_tests/modules/test_timezone.py')
-rw-r--r--tests/integration_tests/modules/test_timezone.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/integration_tests/modules/test_timezone.py b/tests/integration_tests/modules/test_timezone.py
deleted file mode 100644
index 111d53f7..00000000
--- a/tests/integration_tests/modules/test_timezone.py
+++ /dev/null
@@ -1,25 +0,0 @@
-"""Integration test for the timezone module.
-
-This test specifies a timezone to be used by the ``timezone`` module
-and then checks that if that timezone was respected during boot.
-
-(This is ported from
-``tests/cloud_tests/testcases/modules/timezone.yaml``.)"""
-
-import pytest
-
-
-USER_DATA = """\
-#cloud-config
-timezone: US/Aleutian
-"""
-
-
-@pytest.mark.ci
-class TestTimezone:
-
- @pytest.mark.user_data(USER_DATA)
- def test_timezone(self, client):
- timezone_output = client.execute(
- 'date "+%Z" --date="Thu, 03 Nov 2016 00:47:00 -0400"')
- assert timezone_output.strip() == "HDT"