diff options
| author | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-02-14 15:51:45 -0500 |
|---|---|---|
| committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2022-02-14 15:51:45 -0500 |
| commit | 8370ac2bff7f2bb98673d5cc79af7a61632d8dde (patch) | |
| tree | 0756e9017a7167e647f0c57b2feaae29879ffdae | |
| parent | 50db0480d97ee0658f738ae2093cd5be0b20251d (diff) | |
| download | sqlalchemy-8370ac2bff7f2bb98673d5cc79af7a61632d8dde.tar.gz | |
fix memusage test for 2.0
also drop 3.7, 3.8 from mypy GH action
Change-Id: Ib273219edf88ad66f591e044f0984bd364b395f5
| -rw-r--r-- | .github/workflows/run-test.yaml | 2 | ||||
| -rw-r--r-- | test/aaa_profiling/test_memusage.py | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/.github/workflows/run-test.yaml b/.github/workflows/run-test.yaml index 677721d7a..a7864da39 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 2fc61706c..cf89dd6e2 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() |
