Skip to content

Commit

Permalink
Revert "test ci"
Browse files Browse the repository at this point in the history
This reverts commit c8c3dd1.
  • Loading branch information
sebhahn committed Jun 28, 2022
1 parent c8c3dd1 commit 72cc4de
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions tests/test_time_series.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@

import os
import unittest
from tempfile import mkstemp
from tempfile import mkdtemp

import pandas as pd
Expand All @@ -56,10 +55,10 @@ def test_open_non_existing_file():
class OrthoMultiTest(unittest.TestCase):

def setUp(self):
self.testfilename = mkstemp('.nc')[1]
self.testfilename = os.path.join(mkdtemp(), 'test.nc')

def tearDown(self):
os.remove(self.testfilename)
# def tearDown(self):
# os.remove(self.testfilename)

def test_file_io_simple(self):

Expand Down Expand Up @@ -293,7 +292,7 @@ def test_file_write_ts_attributes_for_each(self):
class DatasetContiguousTest(unittest.TestCase):

def setUp(self):
self.testfilename = mkstemp('.nc')[1]
self.testfilename = os.path.join(mkdtemp(), 'test.nc')

def tearDown(self):
os.remove(self.testfilename)
Expand Down Expand Up @@ -361,7 +360,7 @@ def test_unlim_loc_file_writing(self):
class DatasetIndexedTest(unittest.TestCase):

def setUp(self):
self.testfilename = mkstemp('.nc')[1]
self.testfilename = os.path.join(mkdtemp(), 'test.nc')

def tearDown(self):
os.remove(self.testfilename)
Expand Down

0 comments on commit 72cc4de

Please sign in to comment.