From: Mike Bayer Date: Mon, 14 Feb 2022 20:51:45 +0000 (-0500) Subject: fix memusage test for 2.0 X-Git-Tag: rel_2_0_0b1~485 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8370ac2bff7f2bb98673d5cc79af7a61632d8dde;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git fix memusage test for 2.0 also drop 3.7, 3.8 from mypy GH action Change-Id: Ib273219edf88ad66f591e044f0984bd364b395f5 --- diff --git a/.github/workflows/run-test.yaml b/.github/workflows/run-test.yaml index 677721d7a6..a7864da398 100644 --- a/.github/workflows/run-test.yaml +++ b/.github/workflows/run-test.yaml @@ -129,8 +129,6 @@ jobs: os: - "ubuntu-latest" python-version: - - "3.7" - - "3.8" - "3.9" - "3.10" diff --git a/test/aaa_profiling/test_memusage.py b/test/aaa_profiling/test_memusage.py index 2fc61706cf..cf89dd6e2b 100644 --- a/test/aaa_profiling/test_memusage.py +++ b/test/aaa_profiling/test_memusage.py @@ -538,7 +538,7 @@ class MemUsageWBackendTest(fixtures.MappedTest, EnsureZeroed): go() - metadata.drop_all() + metadata.drop_all(self.engine) del m1, m2 assert_no_mappers()