Skip to content

Commit

Permalink
Merge pull request #109 from dls-controls/new_controller
Browse files Browse the repository at this point in the history
Some testing tweaks
  • Loading branch information
coretl committed Aug 3, 2016
2 parents 16ba15b + 067af8b commit 8b93a1a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def get_version():
license='APACHE',
install_requires=['numpy', 'scanpointgenerator'],
extras_require={
'zmq': ['pyzmq']
'websocket': ['tornado']
},
include_package_data=True,
test_suite='nose.collector',
Expand Down
3 changes: 2 additions & 1 deletion tests/test_comms/test_websocket/test_system_websocket.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import os
import sys
sys.path.append(os.path.join(os.path.dirname(__file__), ".."))
sys.path.append(os.path.join(os.path.dirname(__file__), "..", ".."))
import setup_malcolm_paths

import time
# logging
Expand Down
3 changes: 2 additions & 1 deletion tests/test_comms/test_websocket/test_websocketclientcomms.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import os
import sys
sys.path.append(os.path.join(os.path.dirname(__file__), ".."))
sys.path.append(os.path.join(os.path.dirname(__file__), "..", ".."))
import setup_malcolm_paths

from collections import OrderedDict

Expand Down
3 changes: 2 additions & 1 deletion tests/test_comms/test_websocket/test_websocketservercomms.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import os
import sys
sys.path.append(os.path.join(os.path.dirname(__file__), ".."))
sys.path.append(os.path.join(os.path.dirname(__file__), "..", ".."))
import setup_malcolm_paths

from collections import OrderedDict

Expand Down

0 comments on commit 8b93a1a

Please sign in to comment.