diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 27abe86d..31625095 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,7 +28,6 @@ jobs: - name: Install python dependencies run: | python -m pip install --upgrade pip - # pip install setuptools==75.5.0 pip install -e .[dev] - name: Lint with flake8 diff --git a/tests/core/migration_test.py b/tests/core/migration_test.py index ce5a47fb..c3f20d57 100644 --- a/tests/core/migration_test.py +++ b/tests/core/migration_test.py @@ -40,5 +40,4 @@ def test_migration(base_rules): migrate() res = run_cmd(['iptables', '-S']) output = res.stdout.decode('utf-8') - print(output) assert output == f'-P INPUT ACCEPT\n-P FORWARD ACCEPT\n-P OUTPUT ACCEPT\n-N {CUSTOM_CHAIN_NAME}\n-A {CUSTOM_CHAIN_NAME} -p tcp -m tcp --dport 2222 -j ACCEPT\n' # noqa