From f707b78e549cd903e6755cee50785cfcd0941ebe Mon Sep 17 00:00:00 2001 From: Min RK Date: Tue, 13 Sep 2016 15:03:43 +0200 Subject: [PATCH] exclude terminal tests on Windows --- appveyor.yml | 2 +- setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index d2872f137..981d81a7a 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -23,4 +23,4 @@ install: - cmd: pip install .[test] test_script: - - nosetests -v notebook + - nosetests --exclude-dir notebook\terminal -v notebook diff --git a/setup.py b/setup.py index a6f08ab07..eed63efa9 100755 --- a/setup.py +++ b/setup.py @@ -157,6 +157,7 @@ extras_require = { ':sys_platform != "win32"': ['terminado>=0.3.3'], 'test:python_version == "2.7"': ['mock'], 'test': ['nose', 'coverage', 'requests', 'nose_warnings_filters'], + 'test:sys_platform == "win32"': ['nose-exclude'], } if 'setuptools' in sys.modules: