Skip to content

Commit

Permalink
fix test issues
Browse files Browse the repository at this point in the history
  • Loading branch information
gousteris authored and savex committed Sep 12, 2023
1 parent 42aa47d commit ab46e3b
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ jobs:
with:
python-version: '3.8'
- name: Install Tox
run: pip install tox==3.28.0
run: pip install tox==4.11.0
- name: Run Tox
run: tox -e style,py38,cover
30 changes: 15 additions & 15 deletions ducktape/cluster/remoteaccount.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@
# Changing it due to https://github.com/redpanda-data/redpanda/issues/6792
paramiko.packet.Packetizer.REKEY_BYTES = pow(2, 32) # noqa

from contextlib import contextmanager
import logging
import os
from paramiko import SSHClient, SSHConfig, MissingHostKeyPolicy
from paramiko.ssh_exception import SSHException, NoValidConnectionsError
import shutil
import signal
import socket
import stat
import tempfile
import warnings

from ducktape.utils.http_utils import HttpMixin
from ducktape.utils.util import wait_until
from ducktape.errors import DucktapeError
from contextlib import contextmanager # noqa
import logging # noqa
import os # noqa
from paramiko import SSHClient, SSHConfig, MissingHostKeyPolicy # noqa
from paramiko.ssh_exception import SSHException, NoValidConnectionsError # noqa
import shutil # noqa
import signal # noqa
import socket # noqa
import stat # noqa
import tempfile # noqa
import warnings # noqa

from ducktape.utils.http_utils import HttpMixin # noqa
from ducktape.utils.util import wait_until # noqa
from ducktape.errors import DucktapeError # noqa


def check_ssh(method):
Expand Down
2 changes: 1 addition & 1 deletion requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pytest==6.1.0
pytest==6.2.0
# 4.0 drops py27 support
mock==4.0.2
psutil==5.7.2
Expand Down

0 comments on commit ab46e3b

Please sign in to comment.