mirror of
https://github.com/quay/quay.git
synced 2026-01-26 06:21:37 +03:00
* chore: drop deprecated tables and remove unused code * isort imports * migration: check for table existence before drop
9 lines
220 B
Python
9 lines
220 B
Python
from test.fixtures import *
|
|
|
|
from workers.gc.gcworker import GarbageCollectionWorker
|
|
|
|
|
|
def test_gc(initialized_db):
|
|
worker = GarbageCollectionWorker()
|
|
worker._garbage_collection_repos(skip_lock_for_testing=True)
|