Skip to content

Commit

Permalink
Skip reduction tests on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
mwcraig committed Sep 29, 2014
1 parent 534c604 commit aee6cf3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions msumastro/reduction/tests/test_reduction.py
@@ -1,6 +1,7 @@
from tempfile import mkdtemp
from os import path, chdir, getcwd
from shutil import rmtree
import sys

import astropy.io.fits as fits
import pytest
Expand All @@ -21,6 +22,8 @@ def setup():
_test_dir = mkdtemp()


@pytest.mark.skipif('win' in sys.platform,
reason="Cannot overwrite in windows")
def test_trim(make_overscan_test_files):
global _test_dir

Expand Down

0 comments on commit aee6cf3

Please sign in to comment.