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 15eda9e commit 8489bc7Copy full SHA for 8489bc7
itest/Dockerfile
@@ -30,4 +30,5 @@ COPY ./memleak.supp /memleak.supp
30
WORKDIR /itest
31
RUN pip install -r requirements.txt
32
ENV THINGSDB_BIN=/thingsdb
33
+ENV THINGSDB_MEMCHECK=1
34
CMD [ "python", "run_all_tests.py" ]
itest/lib/__init__.py
@@ -71,7 +71,7 @@ async def _run_test(test):
71
72
73
def run_test(test: TestBase):
74
- loop = asyncio.get_event_loop()
+ loop = asyncio.new_event_loop()
75
clean()
76
loop.run_until_complete(_run_test(test))
77
0 commit comments