Advertisement
beelzebielsk

Untitled

Jan 4th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 28.77 KB | None | 0 0
  1. py37 installed: atomicwrites==1.2.1,attrs==18.2.0,backports.functools-lru-cache==1.5,beautifulsoup4==4.6.3,cheroot==6.5.2,Click==7.0,colorama==0.4.1,coverage==4.5.2,cssutils==1.0.2,EasyProcess==0.2.5,Flask==1.0.2,glob2==0.6,hunter==2.1.0,hypothesis==3.84.5,itsdangerous==1.1.0,Jinja2==2.10,Mako==1.0.7,MarkupSafe==1.1.0,more-itertools==4.3.0,parse==1.9.0,parse-type==0.4.2,pluggy==0.8.0,py==1.7.0,py-cpuinfo==4.0.0,Pygments==2.3.1,pyPEG2==2.15.2,pytest==4.0.2,pytest-bdd==3.0.1,pytest-benchmark==3.1.1,pytest-cov==2.6.0,pytest-faulthandler==1.5.0,pytest-instafail==0.4.0,pytest-mock==1.10.0,pytest-qt==3.2.2,pytest-repeat==0.7.0,pytest-rerunfailures==5.0,pytest-travis-fold==1.3.0,pytest-xvfb==1.1.0,PyVirtualDisplay==0.2.1,PyYAML==3.13,qutebrowser==1.5.2,six==1.12.0,vulture==1.0,Werkzeug==0.14.1
  2. py37 run-test-pre: PYTHONHASHSEED='3576321633'
  3. py37 runtests: commands[0] | /home/adam/projects/qutebrowser/.tox/py37/bin/python scripts/link_pyqt.py --tox /home/adam/projects/qutebrowser/.tox/py37
  4. py37 runtests: commands[1] | /home/adam/projects/qutebrowser/.tox/py37/bin/python -bb -m pytest --qute-bdd-webengine tests/end2end/features/test_tabs_bdd.py -k false
  5. ============================= test session starts ==============================
  6. platform linux -- Python 3.7.1, pytest-4.0.2, py-1.7.0, pluggy-0.8.0
  7. cachedir: .tox/py37/.pytest_cache
  8. PyQt5 5.11.3 -- Qt runtime 5.11.2 -- Qt compiled 5.11.2
  9. benchmark: 3.1.1 (defaults: timer=time.perf_counter disable_gc=False min_rounds=5 min_time=0.000005 max_time=1.0 calibration_precision=10 warmup=False warmup_iterations=100000)
  10. hypothesis profile 'default' -> deadline=600, database=DirectoryBasedExampleDatabase('/home/adam/projects/qutebrowser/.hypothesis/examples')
  11. rootdir: /home/adam/projects/qutebrowser, inifile: pytest.ini
  12. plugins: xvfb-1.1.0, travis-fold-1.3.0, rerunfailures-5.0, repeat-0.7.0, qt-3.2.2, mock-1.10.0, instafail-0.4.0, faulthandler-1.5.0, cov-2.6.0, benchmark-3.1.1, bdd-3.0.1, hypothesis-3.84.5
  13. collected 127 items / 125 deselected
  14.  
  15. tests/end2end/features/test_tabs_bdd.py .F
  16.  
  17. ____________ test_home_on_a_pinned_tab_with_pinnedtabfrozen__false _____________
  18.  
  19. request = <FixtureRequest for <Function 'test_home_on_a_pinned_tab_with_pinnedtabfrozen__false'>>
  20.  
  21. > ???
  22.  
  23. tests/end2end/features/test_tabs_bdd.py:521:
  24. _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
  25. .tox/py37/lib/python3.7/site-packages/pytest_bdd/scenario.py:194: in _execute_scenario
  26. _execute_step_function(request, scenario, step, step_func)
  27. .tox/py37/lib/python3.7/site-packages/pytest_bdd/scenario.py:136: in _execute_step_function
  28. step_func(**kwargs)
  29. _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
  30.  
  31. quteproc = <end2end.fixtures.quteprocess.QuteProc object at 0x7f1ba3b3e5e8>
  32. request = <FixtureRequest for <Function 'test_home_on_a_pinned_tab_with_pinnedtabfrozen__false'>>
  33. tabs = ['- data/hello2.txt (active) (pinned)']
  34.  
  35. @bdd.then(bdd.parsers.parse("the following tabs should be open:\n{tabs}"))
  36. def check_open_tabs(quteproc, request, tabs):
  37. """Check the list of open tabs in the session.
  38.  
  39. This is a lightweight alternative for "The session should look like: ...".
  40.  
  41. It expects a list of URLs, with an optional "(active)" suffix.
  42. """
  43. session = quteproc.get_session()
  44. active_suffix = ' (active)'
  45. pinned_suffix = ' (pinned)'
  46. tabs = tabs.splitlines()
  47. assert len(session['windows']) == 1
  48. assert len(session['windows'][0]['tabs']) == len(tabs)
  49.  
  50. # If we don't have (active) anywhere, don't check it
  51. has_active = any(active_suffix in line for line in tabs)
  52. has_pinned = any(pinned_suffix in line for line in tabs)
  53.  
  54. for i, line in enumerate(tabs):
  55. line = line.strip()
  56. assert line.startswith('- ')
  57. line = line[2:] # remove "- " prefix
  58.  
  59. active = False
  60. pinned = False
  61.  
  62. while line.endswith(active_suffix) or line.endswith(pinned_suffix):
  63. if line.endswith(active_suffix):
  64. # active
  65. line = line[:-len(active_suffix)]
  66. active = True
  67. else:
  68. # pinned
  69. line = line[:-len(pinned_suffix)]
  70. pinned = True
  71.  
  72. session_tab = session['windows'][0]['tabs'][i]
  73. current_page = session_tab['history'][-1]
  74. > assert current_page['url'] == quteproc.path_to_url(line)
  75. E AssertionError: assert 'http://local...numbers/1.txt' == 'http://localh...ta/hello2.txt'
  76. E - http://localhost:52041/data/numbers/1.txt
  77. E ? ^^^^ ^^^^
  78. E + http://localhost:52041/data/hello2.txt
  79. E ? ^ ^^^^
  80.  
  81. tests/end2end/features/conftest.py:586: AssertionError
  82. ------------------------------ qutebrowser output ------------------------------
  83. [233 lines suppressed, use -v to show]
  84. 14:36:46.768 DEBUG  ipc ipc:handle_connection:259 Client connected (socket 0x7f042c3bdb88).
  85. 14:36:46.768 DEBUG  ipc ipc:on_ready_read:362 Read from socket 0x7f042c3bdb88: b'{"args": [":open http://localhost:52041/data/numbers/1.txt"], "target_arg": "", "version": "1.5.2", "protocol_version": 1, "cwd": "/home/adam/projects/qutebrowser"}\n'
  86. 14:36:46.769 DEBUG  ipc ipc:_handle_data:304 Processing: {"args": [":open http://localhost:52041/data/numbers/1.txt"], "target_arg": "", "version": "1.5.2", "protocol_version": 1, "cwd": "/home/adam/projects/qutebrowser"}
  87. 
  88. 14:36:46.769 DEBUG  ipc ipc:on_error:241 Socket 0x7f042c3bdb88: error 1: QLocalSocket: Remote closed
  89. 14:36:46.769 DEBUG  ipc ipc:on_disconnected:280 Client disconnected from socket 0x7f042c3bdb88.
  90. 14:36:46.769 DEBUG  ipc ipc:handle_connection:257 No new connection to handle.
  91. 14:36:46.769 DEBUG  init app:process_pos_args:287 Startup cmd ':open http://localhost:52041/data/numbers/1.txt'
  92. 14:36:46.769 DEBUG  commands command:run:534 command called: open ['http://localhost:52041/data/numbers/1.txt']
  93. ----> found it
  94.  
  95. ----> Already found 'command called: *' in the log: 14:36:46.769 DEBUG  commands command:run:534 command called: open ['http://localhost:52041/data/numbers/1.txt']
  96.  
  97. ----> Waiting for re.compile("(load status for <qutebrowser\\.browser\\..* tab_id=\\d+ url='http://localhost:52041/da… in the log
  98. 14:36:46.770 DEBUG  commands command:run:549 Calling qutebrowser.browser.commands.CommandDispatcher.openurl(<qutebrowser.browser.commands.CommandDispatcher>, 'http://localhost:52041/data/numbers/1.txt', False, False, False, False, None, False, False)
  99. 14:36:46.770 DEBUG  url urlutils:get_path_if_valid:381 Checking if 'http://localhost:52041/data/numbers/1.txt' is a path
  100. 14:36:46.770 DEBUG  url urlutils:is_url:266 Checking if 'http://localhost:52041/data/numbers/1.txt' is a URL (autosearch=naive).
  101. 14:36:46.770 DEBUG  url urlutils:is_url:288 Contains explicit scheme
  102. 14:36:46.770 DEBUG  url urlutils:is_url:307 url = True
  103. 14:36:46.770 DEBUG  url urlutils:fuzzy_url:214 URL is a fuzzy address
  104. 14:36:46.770 DEBUG  url urlutils:fuzzy_url:217 Converting fuzzy term 'http://localhost:52041/data/numbers/1.txt' to URL -> http://localhost:52041/data/numbers/1.txt
  105. 14:36:46.771 DEBUG  webview browsertab:_on_before_load_started:955 Going to start loading: http://localhost:52041/data/numbers/1.txt
  106. 14:36:46.771 DEBUG  webview tabbedbrowser:on_title_changed:613 Changing title for idx 0 to 'http://localhost:52041/data/numbers/1.txt'
  107. 14:36:46.771 DEBUG  webview browsertab:_on_before_load_started:955 Going to start loading: http://localhost:52041/data/numbers/1.txt
  108. 14:36:46.771 DEBUG  webview tabbedbrowser:on_title_changed:613 Changing title for idx 0 to 'http://localhost:52041/data/numbers/1.txt'
  109. 14:36:46.773 DEBUG  mouse mouse:eventFilter:55 <qutebrowser.browser.webengine.webview.WebEngineView object at 0x7f042c3bd0d8> got new child <PyQt5.QtWidgets.QWidget object at 0x7f042c3bda68>, installing filter
  110. 14:36:46.780 DEBUG  signals signalfilter:_filter_signals:86 emitting: cur_url_changed(PyQt5.QtCore.QUrl('http://localhost:52041/data/numbers/1.txt')) (tab 0)
  111. 14:36:46.796 DEBUG  webview browsertab:_set_load_status:921 load status for <qutebrowser.browser.webengine.webenginetab.WebEngineTab tab_id=2 url='http://localhost:52041/data/numbers/1.txt'>: LoadStatus.loading
  112. 14:36:46.796 DEBUG  signals signalfilter:_filter_signals:86 emitting: cur_load_status_changed(<LoadStatus.loading: 6>) (tab 0)
  113. 14:36:46.797 DEBUG  signals signalfilter:_filter_signals:86 emitting: cur_load_started() (tab 0)
  114. 14:36:46.797 DEBUG  modes modeman:leave:307 Ignoring leave request for KeyMode.insert (reason load started) as we're in mode KeyMode.normal
  115. 14:36:46.797 DEBUG  modes modeman:leave:307 Ignoring leave request for KeyMode.hint (reason load started) as we're in mode KeyMode.normal
  116. 14:36:46.802 DEBUG  webview browsertab:_on_navigation_request:983 navigation request: url http://localhost:52041/data/numbers/1.txt, type Type.typed, is_main_frame True
  117. 14:36:46.810 DEBUG  misc app:on_focus_object_changed:836 Focus object changed: <PyQt5.QtWidgets.QWidget object at 0x7f042c3bda68>
  118. 14:36:46.810 DEBUG  webview tabbedbrowser:on_title_changed:613 Changing title for idx 0 to 'localhost:52041/data/numbers/1.txt'
  119. 14:36:46.820 DEBUG  mouse mouse:eventFilter:79 <qutebrowser.browser.webengine.webview.WebEngineView object at 0x7f042c3bd0d8>: removed child <PyQt5.QtCore.QObject object at 0x7f042c3bd9d8>
  120. 14:36:46.829 DEBUG  sessions sessions:save:295 Saving session _autosave to /tmp/qutebrowser-basedir-nbcv739g/data/sessions/_autosave.yml...
  121. 14:36:46.830 DEBUG  webview browsertab:_set_load_status:921 load status for <qutebrowser.browser.webengine.webenginetab.WebEngineTab tab_id=2 url='http://localhost:52041/data/numbers/1.txt'>: LoadStatus.success
  122. 14:36:46.830 DEBUG  signals signalfilter:_filter_signals:86 emitting: cur_load_status_changed(<LoadStatus.success: 2>) (tab 0)
  123. ----> found it
  124.  
  125. ============================== :tab-pin ==============================
  126.  
  127.  
  128. ----> Waiting for 'Read from socket *' in the log
  129. 14:36:46.831 DEBUG  signals signalfilter:_filter_signals:86 emitting: cur_load_finished(True) (tab 0)
  130. 14:36:46.876 DEBUG  ipc ipc:handle_connection:259 Client connected (socket 0x7f042c3bd948).
  131. 14:36:46.876 DEBUG  ipc ipc:on_ready_read:362 Read from socket 0x7f042c3bd948: b'{"args": [":tab-pin"], "target_arg": "", "version": "1.5.2", "protocol_version": 1, "cwd": "/home/adam/projects/qutebrowser"}\n'
  132. 14:36:46.877 DEBUG  ipc ipc:_handle_data:304 Processing: {"args": [":tab-pin"], "target_arg": "", "version": "1.5.2", "protocol_version": 1, "cwd": "/home/adam/projects/qutebrowser"}
  133. 
  134. ----> found it
  135.  
  136. ----> Waiting for 'command called: *' in the log
  137. 14:36:46.877 DEBUG  ipc ipc:on_error:241 Socket 0x7f042c3bd948: error 1: QLocalSocket: Remote closed
  138. 14:36:46.877 DEBUG  ipc ipc:on_disconnected:280 Client disconnected from socket 0x7f042c3bd948.
  139. 14:36:46.877 DEBUG  ipc ipc:handle_connection:257 No new connection to handle.
  140. 14:36:46.877 DEBUG  init app:process_pos_args:287 Startup cmd ':tab-pin'
  141. 14:36:46.877 DEBUG  commands command:run:534 command called: tab-pin
  142. 14:36:46.877 DEBUG  commands command:run:549 Calling qutebrowser.browser.commands.CommandDispatcher.tab_pin(<qutebrowser.browser.commands.CommandDispatcher>, None)
  143. ----> found it
  144.  
  145. ============================== :home ==============================
  146.  
  147.  
  148. ----> Waiting for 'Read from socket *' in the log
  149. 14:36:46.885 DEBUG  ipc ipc:handle_connection:259 Client connected (socket 0x7f042c3bdb88).
  150. 14:36:46.886 DEBUG  ipc ipc:on_ready_read:362 Read from socket 0x7f042c3bdb88: b'{"args": [":home"], "target_arg": "", "version": "1.5.2", "protocol_version": 1, "cwd": "/home/adam/projects/qutebrowser"}\n'
  151. 14:36:46.886 DEBUG  ipc ipc:_handle_data:304 Processing: {"args": [":home"], "target_arg": "", "version": "1.5.2", "protocol_version": 1, "cwd": "/home/adam/projects/qutebrowser"}
  152. 
  153. 14:36:46.886 DEBUG  ipc ipc:on_error:241 Socket 0x7f042c3bdb88: error 1: QLocalSocket: Remote closed
  154. 14:36:46.886 DEBUG  ipc ipc:on_disconnected:280 Client disconnected from socket 0x7f042c3bdb88.
  155. 14:36:46.886 DEBUG  ipc ipc:handle_connection:257 No new connection to handle.
  156. 14:36:46.886 DEBUG  init app:process_pos_args:287 Startup cmd ':home'
  157. 14:36:46.886 DEBUG  commands command:run:534 command called: home
  158. 14:36:46.887 DEBUG  commands command:run:549 Calling qutebrowser.components.misccommands.home(<qutebrowser.browser.webengine.webenginetab.WebEngineTab tab_id=2 url='http://localhost:52041/data/numbers/1.txt'>)
  159. 14:36:46.887 DEBUG  url urlutils:get_path_if_valid:381 Checking if 'http://localhost:52041/data/hello2.txt' is a path
  160. 14:36:46.887 DEBUG  url urlutils:fuzzy_url:214 URL is a fuzzy address
  161. 14:36:46.887 DEBUG  url urlutils:fuzzy_url:217 Converting fuzzy term 'http://localhost:52041/data/hello2.txt' to URL -> http://localhost:52041/data/hello2.txt
  162. 14:36:46.887 DEBUG  webview browsertab:_on_before_load_started:955 Going to start loading: http://localhost:52041/data/hello2.txt
  163. 14:36:46.887 DEBUG  webview tabbedbrowser:on_title_changed:613 Changing title for idx 0 to 'http://localhost:52041/data/hello2.txt'
  164. 14:36:46.887 DEBUG  webview browsertab:_on_before_load_started:955 Going to start loading: http://localhost:52041/data/hello2.txt
  165. 14:36:46.887 DEBUG  webview tabbedbrowser:on_title_changed:613 Changing title for idx 0 to 'http://localhost:52041/data/hello2.txt'
  166. 14:36:46.888 DEBUG  signals signalfilter:_filter_signals:86 emitting: cur_url_changed(PyQt5.QtCore.QUrl('http://localhost:52041/data/hello2.txt')) (tab 0)
  167. ----> found it
  168.  
  169. ----> Already found 'command called: *' in the log: 14:36:46.886 DEBUG  commands command:run:534 command called: home
  170.  
  171. ============================== :session-save --with-private "/tmp/tmpsr3wnnru/session.yml" ==============================
  172.  
  173.  
  174. ----> Waiting for 'Read from socket *' in the log
  175. 14:36:46.894 DEBUG  webview browsertab:_set_load_status:921 load status for <qutebrowser.browser.webengine.webenginetab.WebEngineTab tab_id=2 url='http://localhost:52041/data/hello2.txt'>: LoadStatus.loading
  176. 14:36:46.894 DEBUG  signals signalfilter:_filter_signals:86 emitting: cur_load_status_changed(<LoadStatus.loading: 6>) (tab 0)
  177. 14:36:46.894 DEBUG  signals signalfilter:_filter_signals:86 emitting: cur_load_started() (tab 0)
  178. 14:36:46.894 DEBUG  modes modeman:leave:307 Ignoring leave request for KeyMode.insert (reason load started) as we're in mode KeyMode.normal
  179. 14:36:46.894 DEBUG  modes modeman:leave:307 Ignoring leave request for KeyMode.hint (reason load started) as we're in mode KeyMode.normal
  180. 14:36:46.899 DEBUG  webview browsertab:_on_navigation_request:983 navigation request: url http://localhost:52041/data/hello2.txt, type Type.typed, is_main_frame True
  181. 14:36:46.900 DEBUG  ipc ipc:handle_connection:259 Client connected (socket 0x7f042c3981f8).
  182. 14:36:46.901 DEBUG  ipc ipc:on_ready_read:362 Read from socket 0x7f042c3981f8: b'{"args": [":session-save --with-private \\"/tmp/tmpsr3wnnru/session.yml\\""], "target_arg": "", "version": "1.5.2", "protocol_version": 1, "cwd": "/home/adam/projects/qutebrowser"}\n'
  183. 14:36:46.901 DEBUG  ipc ipc:_handle_data:304 Processing: {"args": [":session-save --with-private \"/tmp/tmpsr3wnnru/session.yml\""], "target_arg": "", "version": "1.5.2", "protocol_version": 1, "cwd": "/home/adam/projects/qutebrowser"}
  184. 
  185. 14:36:46.901 DEBUG  ipc ipc:on_error:241 Socket 0x7f042c3981f8: error 1: QLocalSocket: Remote closed
  186. 14:36:46.901 DEBUG  ipc ipc:on_disconnected:280 Client disconnected from socket 0x7f042c3981f8.
  187. 14:36:46.901 DEBUG  ipc ipc:handle_connection:257 No new connection to handle.
  188. 14:36:46.901 DEBUG  init app:process_pos_args:287 Startup cmd ':session-save --with-private "/tmp/tmpsr3wnnru/session.yml"'
  189. 14:36:46.902 DEBUG  commands command:run:534 command called: session-save ['--with-private', '/tmp/tmpsr3wnnru/session.yml']
  190. 14:36:46.902 DEBUG  commands argparser:multitype_conv:158 Trying to parse '/tmp/tmpsr3wnnru/session.yml' as <class 'qutebrowser.misc.sessions.Sentinel'>
  191. 14:36:46.902 DEBUG  commands argparser:multitype_conv:162 Got name: Invalid Sentinel value /tmp/tmpsr3wnnru/session.yml for <class 'qutebrowser.misc.sessions.Sentinel'>
  192. 14:36:46.902 DEBUG  commands argparser:multitype_conv:158 Trying to parse '/tmp/tmpsr3wnnru/session.yml' as <class 'str'>
  193. 14:36:46.902 DEBUG  commands command:run:549 Calling qutebrowser.misc.sessions.SessionManager.session_save(<qutebrowser.misc.sessions.SessionManager object at 0x7f04928fd948>, '/tmp/tmpsr3wnnru/session.yml', False, False, False, False, True, 0)
  194. 14:36:46.902 DEBUG  sessions sessions:save:295 Saving session /tmp/tmpsr3wnnru/session.yml to /tmp/tmpsr3wnnru/session.yml...
  195. 14:36:46.903 INFO  message message:info:81 Saved session /tmp/tmpsr3wnnru/session.yml.
  196. ----> found it
  197.  
  198. ----> Already found 'command called: *' in the log: 14:36:46.902 DEBUG  commands command:run:534 command called: session-save ['--with-private', '/tmp/tmpsr3wnnru/session.yml']
  199.  
  200. ----> Already found 'Saved session /tmp/tmpsr3wnnru/session.yml.' in the log: 14:36:46.903 INFO  message message:info:81 Saved session /tmp/tmpsr3wnnru/session.yml.
  201.  
  202. Current session data:
  203. windows:
  204. - active: true
  205. geometry: !!binary |
  206. AdnQywACAAAAAAAyAAAAMgAAA1EAAAKJAAAAMgAAADIAAANRAAACiQAAAAAAAAAAAyA=
  207. tabs:
  208. - active: true
  209. history:
  210. - pinned: true
  211. title: about:blank
  212. url: about:blank
  213. - active: true
  214. pinned: true
  215. scroll-pos:
  216. x: 0
  217. y: 0
  218. title: localhost:52041/data/numbers/1.txt
  219. url: http://localhost:52041/data/numbers/1.txt
  220. zoom: 1.0
  221.  
  222. 14:36:46.907 DEBUG  misc mainwindow:_update_overlay_geometry:305 new geometry for <qutebrowser.mainwindow.messageview.MessageView object at 0x7f04742cbca8>: PyQt5.QtCore.QRect(0, 537, 801, 45)
  223. -------------------------------- server output ---------------------------------
  224. {"verb": "GET", "path": "/favicon.ico", "status": 404}
  225. {"verb": "GET", "path": "/data/hello2.txt", "status": 200}
  226. --------------------------------- BDD scenario ---------------------------------
  227. Feature: Tab management
  228. Scenario: :home on a pinned tab with pinned.tab.frozen = false (features/tabs.feature:1308)
  229. Given I clean up open tabs (0.45s)
  230. And I set tabs.tabs_are_windows to false (0.04s)
  231. When I set url.start_pages to ["http://localhost:(port)/data/hello2.txt"] (0.08s)
  232. And I set pinned.tab.frozen to false (0.04s)
  233. And I open data/numbers/1.txt (0.07s)
  234. And I run :tab-pin (0.05s)
  235. And I run :home (0.01s)
  236. Then the following tabs should be open:
  237. - data/hello2.txt (active) (pinned) (0.02s)
  238. ------------------------------ Captured log call -------------------------------
  239. ipc.py 435 DEBUG Connecting to /tmp/qutebrowser-basedir-nbcv739g/runtime/ipc-1b259588b4c5e7636a2fa6ecd83da96e
  240. ipc.py 440 INFO Opening in existing instance
  241. ipc.py 452 DEBUG Writing: b'{"args": [":config-clear"], "target_arg": "", "version": "1.5.2", "protocol_version": 1, "cwd": "/home/adam/projects/qutebrowser"}\n'
  242. ipc.py 435 DEBUG Connecting to /tmp/qutebrowser-basedir-nbcv739g/runtime/ipc-1b259588b4c5e7636a2fa6ecd83da96e
  243. ipc.py 440 INFO Opening in existing instance
  244. ipc.py 452 DEBUG Writing: b'{"args": [":set -t \\"messages.timeout\\" \\"0\\""], "target_arg": "", "version": "1.5.2", "protocol_version": 1, "cwd": "/home/adam/projects/qutebrowser"}\n'
  245. ipc.py 435 DEBUG Connecting to /tmp/qutebrowser-basedir-nbcv739g/runtime/ipc-1b259588b4c5e7636a2fa6ecd83da96e
  246. ipc.py 440 INFO Opening in existing instance
  247. ipc.py 452 DEBUG Writing: b'{"args": [":set -t \\"auto_save.interval\\" \\"0\\""], "target_arg": "", "version": "1.5.2", "protocol_version": 1, "cwd": "/home/adam/projects/qutebrowser"}\n'
  248. ipc.py 435 DEBUG Connecting to /tmp/qutebrowser-basedir-nbcv739g/runtime/ipc-1b259588b4c5e7636a2fa6ecd83da96e
  249. ipc.py 440 INFO Opening in existing instance
  250. ipc.py 452 DEBUG Writing: b'{"args": [":set -t \\"new_instance_open_target_window\\" \\"last-opened\\""], "target_arg": "", "version": "1.5.2", "protocol_version": 1, "cwd": "/home/adam/projects/qutebrowser"}\n'
  251. ipc.py 435 DEBUG Connecting to /tmp/qutebrowser-basedir-nbcv739g/runtime/ipc-1b259588b4c5e7636a2fa6ecd83da96e
  252. ipc.py 440 INFO Opening in existing instance
  253. ipc.py 452 DEBUG Writing: b'{"args": [":set -t \\"tabs.last_close\\" \\"blank\\""], "target_arg": "", "version": "1.5.2", "protocol_version": 1, "cwd": "/home/adam/projects/qutebrowser"}\n'
  254. ipc.py 435 DEBUG Connecting to /tmp/qutebrowser-basedir-nbcv739g/runtime/ipc-1b259588b4c5e7636a2fa6ecd83da96e
  255. ipc.py 440 INFO Opening in existing instance
  256. ipc.py 452 DEBUG Writing: b'{"args": [":window-only"], "target_arg": "", "version": "1.5.2", "protocol_version": 1, "cwd": "/home/adam/projects/qutebrowser"}\n'
  257. ipc.py 435 DEBUG Connecting to /tmp/qutebrowser-basedir-nbcv739g/runtime/ipc-1b259588b4c5e7636a2fa6ecd83da96e
  258. ipc.py 440 INFO Opening in existing instance
  259. ipc.py 452 DEBUG Writing: b'{"args": [":tab-only --force"], "target_arg": "", "version": "1.5.2", "protocol_version": 1, "cwd": "/home/adam/projects/qutebrowser"}\n'
  260. ipc.py 435 DEBUG Connecting to /tmp/qutebrowser-basedir-nbcv739g/runtime/ipc-1b259588b4c5e7636a2fa6ecd83da96e
  261. ipc.py 440 INFO Opening in existing instance
  262. ipc.py 452 DEBUG Writing: b'{"args": [":tab-close --force"], "target_arg": "", "version": "1.5.2", "protocol_version": 1, "cwd": "/home/adam/projects/qutebrowser"}\n'
  263. ipc.py 435 DEBUG Connecting to /tmp/qutebrowser-basedir-nbcv739g/runtime/ipc-1b259588b4c5e7636a2fa6ecd83da96e
  264. ipc.py 440 INFO Opening in existing instance
  265. ipc.py 452 DEBUG Writing: b'{"args": [":set -t \\"tabs.tabs_are_windows\\" \\"false\\""], "target_arg": "", "version": "1.5.2", "protocol_version": 1, "cwd": "/home/adam/projects/qutebrowser"}\n'
  266. ipc.py 435 DEBUG Connecting to /tmp/qutebrowser-basedir-nbcv739g/runtime/ipc-1b259588b4c5e7636a2fa6ecd83da96e
  267. ipc.py 440 INFO Opening in existing instance
  268. ipc.py 452 DEBUG Writing: b'{"args": [":set -t \\"url.start_pages\\" \\"[\\\\\\"http://localhost:52041/data/hello2.txt\\\\\\"]\\""], "target_arg": "", "version": "1.5.2", "protocol_version": 1, "cwd": "/home/adam/projects/qutebrowser"}\n'
  269. ipc.py 435 DEBUG Connecting to /tmp/qutebrowser-basedir-nbcv739g/runtime/ipc-1b259588b4c5e7636a2fa6ecd83da96e
  270. ipc.py 440 INFO Opening in existing instance
  271. ipc.py 452 DEBUG Writing: b'{"args": [":set -t \\"pinned.tab.frozen\\" \\"false\\""], "target_arg": "", "version": "1.5.2", "protocol_version": 1, "cwd": "/home/adam/projects/qutebrowser"}\n'
  272. ipc.py 435 DEBUG Connecting to /tmp/qutebrowser-basedir-nbcv739g/runtime/ipc-1b259588b4c5e7636a2fa6ecd83da96e
  273. ipc.py 440 INFO Opening in existing instance
  274. ipc.py 452 DEBUG Writing: b'{"args": [":open http://localhost:52041/data/numbers/1.txt"], "target_arg": "", "version": "1.5.2", "protocol_version": 1, "cwd": "/home/adam/projects/qutebrowser"}\n'
  275. ipc.py 435 DEBUG Connecting to /tmp/qutebrowser-basedir-nbcv739g/runtime/ipc-1b259588b4c5e7636a2fa6ecd83da96e
  276. ipc.py 440 INFO Opening in existing instance
  277. ipc.py 452 DEBUG Writing: b'{"args": [":tab-pin"], "target_arg": "", "version": "1.5.2", "protocol_version": 1, "cwd": "/home/adam/projects/qutebrowser"}\n'
  278. ipc.py 435 DEBUG Connecting to /tmp/qutebrowser-basedir-nbcv739g/runtime/ipc-1b259588b4c5e7636a2fa6ecd83da96e
  279. ipc.py 440 INFO Opening in existing instance
  280. ipc.py 452 DEBUG Writing: b'{"args": [":home"], "target_arg": "", "version": "1.5.2", "protocol_version": 1, "cwd": "/home/adam/projects/qutebrowser"}\n'
  281. ipc.py 435 DEBUG Connecting to /tmp/qutebrowser-basedir-nbcv739g/runtime/ipc-1b259588b4c5e7636a2fa6ecd83da96e
  282. ipc.py 440 INFO Opening in existing instance
  283. ipc.py 452 DEBUG Writing: b'{"args": [":session-save --with-private \\"/tmp/tmpsr3wnnru/session.yml\\""], "target_arg": "", "version": "1.5.2", "protocol_version": 1, "cwd": "/home/adam/projects/qutebrowser"}\n'
  284. [100%]
  285. =========================== short test summary info ============================
  286. FAIL tests/end2end/features/test_tabs_bdd.py::test_home_on_a_pinned_tab_with_pinnedtabfrozen__false
  287. ============== 1 failed, 1 passed, 125 deselected in 3.17 seconds ==============
  288. ERROR: InvocationError for command '/home/adam/projects/qutebrowser/.tox/py37/bin/python -bb -m pytest --qute-bdd-webengine tests/end2end/features/test_tabs_bdd.py -k false' (exited with code 1)
  289. ___________________________________ summary ____________________________________
  290. ERROR: py37: commands failed
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement