Skip to content

Commit

Permalink
fix: debug test
Browse files Browse the repository at this point in the history
  • Loading branch information
ACornuIGN committed Dec 22, 2023
1 parent 537e0de commit 183a83c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,18 +17,18 @@
def setup_module(module): # run before the first test
try: # Clean folder test if exists
shutil.rmtree(OUTPUT)
os.mkdir(OUTPUT)
except FileNotFoundError:
pass
os.makedirs(OUTPUT, exist_ok=True)

"""
def teardown_module(module): # run after the last test
try: # Clean folder test if exists
shutil.rmtree(OUTPUT)
os.mkdir(OUTPUT)
except FileNotFoundError:
pass

"""

def test_writer():
obj = Worksite(name = FILENAME)
Expand Down

0 comments on commit 183a83c

Please sign in to comment.