Skip to content

Commit

Permalink
breaking test
Browse files Browse the repository at this point in the history
  • Loading branch information
Jo-L committed Dec 17, 2024
1 parent 0165fd5 commit f9c18d5
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
2 changes: 2 additions & 0 deletions package_name/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
def a_function_that_will_break():
assert False
7 changes: 7 additions & 0 deletions tests/test_package.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
def test_package_import():
import package_name # noqa: F401

def test_failure():
from package_name import a_function_that_will_break

a_function_that_will_break()


0 comments on commit f9c18d5

Please sign in to comment.