Skip to content
Closed
Changes from 1 commit
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
Next Next commit
test_pdb_can_be_used_before_configure
  • Loading branch information
blueyed committed Mar 31, 2020
commit 467375937e8c77ff98dbfceb5e7cad040dffacaa
6 changes: 6 additions & 0 deletions testing/test_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ def test_dist_incompatibility_messages(testdir):
assert "incompatible" in result.stderr.str()


def test_pdb_can_be_used_before_configure(testdir):
result = testdir.runpytest("--pdb", "-n", "2", "--version")
assert result.ret == 0
assert "pytest version" in result.stderr.str()


def test_dist_options(testdir):
from xdist.plugin import pytest_cmdline_main as check_options

Expand Down