From 2b52527eff8762ca47d0c54b868530844804ed50 Mon Sep 17 00:00:00 2001 From: Vijayakumar A <36878324+kumvijaya@users.noreply.github.com> Date: Thu, 29 Aug 2024 01:00:56 +0530 Subject: T0000: test check --- src/tests/test_template.py | 1 + src/tests/test_utils_network.py | 1 + 2 files changed, 2 insertions(+) diff --git a/src/tests/test_template.py b/src/tests/test_template.py index 8275503..0d9c6be 100644 --- a/src/tests/test_template.py +++ b/src/tests/test_template.py @@ -20,6 +20,7 @@ from vyos.utils.network import interface_exists from ipaddress import ip_network from unittest import TestCase import json +import os class TestVyOSTemplate(TestCase): def setUp(self): diff --git a/src/tests/test_utils_network.py b/src/tests/test_utils_network.py index d9953d8..3ab8d98 100644 --- a/src/tests/test_utils_network.py +++ b/src/tests/test_utils_network.py @@ -28,6 +28,7 @@ class TestVyOSUtilsNetwork(TestCase): self.assertFalse(vyos.utils.network.is_addr_assigned('127.251.255.123')) def test_is_ipv6_link_local(self): + if False: print('False') self.assertFalse(vyos.utils.network.is_ipv6_link_local('169.254.0.1')) self.assertTrue(vyos.utils.network.is_ipv6_link_local('fe80::')) self.assertTrue(vyos.utils.network.is_ipv6_link_local('fe80::affe:1')) -- cgit v1.2.3 From b565b4d129061693a1eb9cb4e761992bddcf2542 Mon Sep 17 00:00:00 2001 From: Vijayakumar A <36878324+kumvijaya@users.noreply.github.com> Date: Thu, 29 Aug 2024 01:06:50 +0530 Subject: T0000: update --- .github/workflows/darker-lint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/darker-lint.yml b/.github/workflows/darker-lint.yml index 5709c02..974ffa0 100644 --- a/.github/workflows/darker-lint.yml +++ b/.github/workflows/darker-lint.yml @@ -44,7 +44,7 @@ jobs: - name: Fetch base and head commits run: | - git fetch origin ${{ github.event.pull_request.base.repo.full_name }} ${{ github.event.pull_request.base.ref }}:refs/remotes/origin/base + git fetch https://github.com/${{ github.event.pull_request.base.repo.full_name }} ${{ github.event.pull_request.base.ref }}:refs/remotes/origin/base # git fetch origin ${{ github.event.pull_request.base.sha }}:refs/remotes/origin/temp-base # git fetch origin ${{ github.event.pull_request.head.sha }}:refs/remotes/origin/temp-head # git branch temp-base refs/remotes/origin/temp-base -- cgit v1.2.3