Make test windows-only, again.

This commit is contained in:
Tomas Groth 2015-10-27 15:15:22 +00:00
parent fc5f2e1018
commit a8c5f8cb52
1 changed files with 3 additions and 0 deletions

View File

@ -25,6 +25,9 @@ This module contains tests for the WorshipCenter Pro song importer.
import os
from unittest import TestCase, SkipTest
if os.name != 'nt':
raise SkipTest('Not Windows, skipping test')
import pyodbc
from tests.functional import patch, MagicMock