Skip to content

Commit

Permalink
run again
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-janssen committed Jul 16, 2023
1 parent d7f8926 commit 72c85bb
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/test_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,12 @@ def funct_add(a, b):


class TestExecutorHelper(unittest.TestCase):
@classmethod
def setUpClass(cls):
def setUp(cls):
cls.test_dir = os.path.abspath(os.path.dirname(__file__))
os.makedirs(os.path.join(cls.test_dir, "cache"), exist_ok=True)

@classmethod
def tearDownClass(cls):

def tearDown(cls):
os.removedirs(os.path.join(cls.test_dir, "cache"))

def test_cache(self):
Expand Down

0 comments on commit 72c85bb

Please sign in to comment.