From e674eb4b56ae49588e891d5fcd591f71c71fe75e Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Tue, 10 Dec 2013 19:41:49 +0200 Subject: [PATCH] Explicitly skip the skipped test in test_bin. --- tests/test_bin.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_bin.py b/tests/test_bin.py index 155e06a..4216662 100644 --- a/tests/test_bin.py +++ b/tests/test_bin.py @@ -24,6 +24,8 @@ import os import subprocess import sys +from nose.plugins.skip import SkipTest + def run_cmd(cmd, stdin_data=None): p = subprocess.Popen(cmd, @@ -122,7 +124,7 @@ def test_hy2py(): # and running this script this way doesn't work on Windows if os.name == "nt": - return + raise SkipTest("doesn't work on Windows") i = 0 for dirpath, dirnames, filenames in os.walk("tests/native_tests"):