mirror of
https://github.com/panda3d/panda3d.git
synced 2026-02-12 18:20:01 -06:00
I'm mostly trying to make sure we have over-coverage for a couple of places that are being hit intermittently by our current unit tests, generating noisy codecov reports. If we make sure these places are hit always, we hopefully won't have codecov misreport lost/gained coverage for unrelated changes.
9 lines
264 B
Python
9 lines
264 B
Python
from panda3d import core
|
|
|
|
|
|
def test_bamcache_flush_index():
|
|
# We really only have this unit test so that this method is being hit
|
|
# consistently, and not intermittently, to avoid a noisy coverage report.
|
|
cache = core.BamCache()
|
|
cache.flush_index()
|