Skip to content

Commit

Permalink
Do not compare any id-*.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
flomnes committed Jan 5, 2022
1 parent 5839029 commit ad31f56
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/tests/examples/antares_test_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,11 @@ def compare_directory(result_dir, reference_dir):
assert (result_dir.is_dir())
assert (reference_dir.is_dir())

uncompared_file_name = ['id-daily.txt', 'id-hourly.txt']
uncompared_file_name = ['id-hourly.txt',
'id-daily.txt',
'id-weekly.txt',
'id-monthly.txt',
'id-annual.txt']

for x in result_dir.iterdir():
if x.is_dir():
Expand Down

0 comments on commit ad31f56

Please sign in to comment.