Skip to content

Commit

Permalink
Get rid of six test dependency
Browse files Browse the repository at this point in the history
Signed-off-by: Aarni Koskela <[email protected]>
  • Loading branch information
akx committed Dec 20, 2023
1 parent 75baca2 commit c92af97
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
readme = readme_file.read().decode('utf-8')

requirements = []
test_requirements = ['pytest', 'pylama', 'six']
test_requirements = ['pytest', 'pylama']
needs_pytest = {'pytest', 'test', 'ptr'}.intersection(sys.argv)
setup_requirements = ['pytest-runner'] if needs_pytest else []
extra_requirements = {'proxy': ['PySocks']}
Expand Down
2 changes: 1 addition & 1 deletion tests/test_websocket_integration.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import base64
import hashlib
import re
import socketserver
from collections import OrderedDict

import pytest
from six.moves import socketserver
from testsupport.broker import fake_websocket_broker

import paho.mqtt.client as client
Expand Down
2 changes: 1 addition & 1 deletion tests/testsupport/broker.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import contextlib
import socket
import socketserver
import threading

import pytest
from six.moves import socketserver


class FakeBroker:
Expand Down

0 comments on commit c92af97

Please sign in to comment.