def test_correct_setup_no_py(self):
channel = self.gw.remote_exec("""
import sys
channel.send(sys.modules.keys())
""")
-> remotemodules = channel.receive()
assert 'py' not in remotemodules, (
"py should not be imported on remote side")