summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/test/runner.py15
1 files changed, 7 insertions, 8 deletions
diff --git a/django/test/runner.py b/django/test/runner.py
index dbbd03441a..c11681fde8 100644
--- a/django/test/runner.py
+++ b/django/test/runner.py
@@ -589,14 +589,13 @@ class DiscoverRunner:
top_level = label_as_path
while True:
init_py = os.path.join(top_level, '__init__.py')
- if os.path.exists(init_py):
- try_next = os.path.dirname(top_level)
- if try_next == top_level:
- # __init__.py all the way down? give up.
- break
- top_level = try_next
- continue
- break
+ if not os.path.exists(init_py):
+ break
+ try_next = os.path.dirname(top_level)
+ if try_next == top_level:
+ # __init__.py all the way down? give up.
+ break
+ top_level = try_next
kwargs['top_level_dir'] = top_level
if not (tests and tests.countTestCases()) and is_discoverable(label):