From b9465d52032cdd49205594b4312a5506b81a01bc Mon Sep 17 00:00:00 2001 From: Marcin Kuzminski Date: Wed, 20 Sep 2017 00:25:28 +0200 Subject: [PATCH] pytest: use ipdb as default --pdb handler --- pytest.ini | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pytest.ini b/pytest.ini index 8d7f630e..48125453 100644 --- a/pytest.ini +++ b/pytest.ini @@ -4,7 +4,11 @@ pylons_config = rhodecode/tests/rhodecode.ini vcsserver_protocol = http vcsserver_config_http = rhodecode/tests/vcsserver_http.ini norecursedirs = tests/scripts -addopts = -k "not _BaseTest" + +addopts = + -k "not _BaseTest" + --pdbcls=IPython.terminal.debugger:TerminalPdb + markers = vcs_operations: Mark tests depending on a running RhodeCode instance. xfail_backends: Mark tests as xfail for given backends.