Skip to content

Commit

Permalink
Testing: Skip all ipdb test on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
ccordoba12 committed Dec 28, 2018
1 parent c62dd37 commit d878866
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions spyder_kernels/ipdb/tests/test_ipdb_kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@
from spyder_kernels.ipdb.kernel import IPdbKernel
from spyder_kernels.py3compat import PY2


# =============================================================================
# Skip on Linux and our CIs because these tests time out too frequently
# =============================================================================
if os.environ.get('CI', None) is not None and sys.platform.startswith('linux'):
pytestmark = pytest.mark.skip


# =============================================================================
# Constants
# =============================================================================
Expand Down

0 comments on commit d878866

Please sign in to comment.