summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bitbake/lib/bb/tests/fetch.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/tests/fetch.py b/bitbake/lib/bb/tests/fetch.py
index d230120271..ba7be048a8 100644
--- a/bitbake/lib/bb/tests/fetch.py
+++ b/bitbake/lib/bb/tests/fetch.py
@@ -24,7 +24,8 @@ def skipIfNoNetwork():
24 return lambda f: f 24 return lambda f: f
25 25
26class TestTimeout(Exception): 26class TestTimeout(Exception):
27 pass 27 # Indicate to pytest that this is not a test suite
28 __test__ = False
28 29
29class Timeout(): 30class Timeout():
30 31