Skip to content

Commit

Permalink
removed no cover
Browse files Browse the repository at this point in the history
  • Loading branch information
ikrom96git committed Jan 12, 2024
1 parent a8b1322 commit cb34c1a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pySDC/projects/Second_orderSDC/check_data_folder.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import os # pragma: no cover
import os

folder_name = "./data" # pragma: no cover
folder_name = "./data"

# Check if the folder already exists
if not os.path.isdir(folder_name): # pragma: no cover
if not os.path.isdir(folder_name):

Check warning on line 6 in pySDC/projects/Second_orderSDC/check_data_folder.py

View check run for this annotation

Codecov / codecov/patch

pySDC/projects/Second_orderSDC/check_data_folder.py#L6

Added line #L6 was not covered by tests
# Create the folder
os.makedirs(folder_name)
else:
Expand Down

0 comments on commit cb34c1a

Please sign in to comment.