Skip to content

Commit f5e8025

Browse files
disable firewall for autoconnect
Signed-off-by: Marius Sincovici <[email protected]>
1 parent e343f55 commit f5e8025

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/ci-gitlab.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ jobs:
1717
trigger-token: ${{ secrets.TRIGGER_TOKEN }}
1818
project-id: ${{ secrets.PROJECT_ID }}
1919
with:
20-
cancel-outdated-pipelines: ${{ github.ref_name != 'use-tester-image-1.3.2' }}
21-
triggered-ref: use-tester-image-1.3.2
20+
cancel-outdated-pipelines: ${{ github.ref_name != 'main' }}
21+
triggered-ref: main

test/qa/test_autoconnect.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,14 @@
55

66
import lib
77
from lib import daemon, info, logging, login, network, server
8+
import contextlib
89

910

1011
def setup_module(module): # noqa: ARG001
1112
daemon.start()
1213
login.login_as("default")
14+
with contextlib.suppress(Exception):
15+
sh.nordvpn.set.firewall("off")
1316

1417

1518
def teardown_module(module): # noqa: ARG001

0 commit comments

Comments
 (0)