Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion tests/test_datacontainer.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@
"""
import configobj
import pytest
import mock
import unittest
import time
try: import simplejson as json
except ImportError: import json
import socket
try:
from unittest import mock
except ImportError:
import mock

import sys
import os
Expand Down
5 changes: 4 additions & 1 deletion tests/test_memory_leak.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@
"""
import configobj
import pytest
import mock
import unittest
try:
from unittest import mock
except ImportError:
import mock

import resource
import sys
Expand Down
5 changes: 4 additions & 1 deletion tests/test_sampleprobe.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@
"""
import configobj
import pytest
import mock
import unittest
import socket
try:
from unittest import mock
except ImportError:
import mock

import resource
import time
Expand Down
5 changes: 4 additions & 1 deletion tests/test_senderprotocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@
"""
import configobj
import pytest
import mock
import unittest
import time
try: import simplejson as json
except ImportError: import json
import socket
try:
from unittest import mock
except ImportError:
import mock

import sys
import os
Expand Down
5 changes: 4 additions & 1 deletion tests/test_zabbixagentconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@
"""
import configobj
import pytest
import mock
import unittest
import logging
try:
from unittest import mock
except ImportError:
import mock

import sys
import os
Expand Down