We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a00b4f commit 13c0d99Copy full SHA for 13c0d99
tests/__init__.py
@@ -1,6 +1,10 @@
1
import logging
2
import os
3
-import tracemalloc
+import platform
4
+
5
6
+if platform.python_implementation() != "PyPy": # pragma: no branch
7
+ import tracemalloc
8
9
10
format = "%(asctime)s %(levelname)s %(name)s %(message)s"
0 commit comments