Skip to content

Commit

Permalink
fix: locally fix elixir-cloud-aai/cookiecutter-python#9 without updat…
Browse files Browse the repository at this point in the history
…ing .cruft.json
  • Loading branch information
JaeAeich committed Aug 1, 2024
1 parent 15aa417 commit 551823a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions tests/test_integration/test_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,8 @@

from pathlib import Path

import pytest


@pytest.fixture
def init_file_exists():
def test_init_file_exists():
"""Check if the __init__.py file exists."""
path_to_init_file = Path(__file__).parents[2] / "tus_storagehandler" / "__init__.py"
assert path_to_init_file.exists(), f"File {path_to_init_file} does not exist."
5 changes: 1 addition & 4 deletions tests/test_unit/test_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,8 @@

from pathlib import Path

import pytest


@pytest.fixture
def init_file_exists():
def test_init_file_exists():
"""Check if the __init__.py file exists."""
path_to_init_file = Path(__file__).parents[2] / "tus_storagehandler" / "__init__.py"
assert path_to_init_file.exists(), f"File {path_to_init_file} does not exist."

0 comments on commit 551823a

Please sign in to comment.