Skip to content

Commit

Permalink
Update test_bake_project.py
Browse files Browse the repository at this point in the history
  • Loading branch information
joeycasey87 authored Aug 1, 2024
1 parent c101c6b commit 03cdeaa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/test_bake_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def test_bake_with_defaults(cookies):

found_toplevel_files = [f.basename for f in result.project.listdir()]
assert 'setup.py' in found_toplevel_files
assert 'pysteps_importer_abc' in found_toplevel_files
assert 'pysteps_diagnostic_xxx' in found_toplevel_files
assert 'tox.ini' in found_toplevel_files
assert 'tests' in found_toplevel_files

Expand Down Expand Up @@ -146,7 +146,7 @@ def test_using_pytest(cookies):
) as result:
assert result.project.isdir()
test_file_path = result.project.join(
'tests/test_pysteps_importer_abc.py'
'tests/test_pysteps_diagnostic_xxx.py'
)
lines = test_file_path.readlines()
# Test the new pytest target
Expand Down

0 comments on commit 03cdeaa

Please sign in to comment.