=====
`PR 222: Improved IntegratedFixture and static check cleanups <https://github.com/4dn-dcic/utils/pull/222>`_
* Show fewer uninteresting tracebacks on static test failures.
* Small incompatible changes to recently released qa-related items:
* In ``qa_checkers.confirm_no_uses``, remove the new ``if_used`` argument in favor of a simpler implementation.
* Slightly rerefactored the class hierarchy so that ``StaticChecker`` is a smaller class that doesn't have quite
as much functionality, and ``StaticSourcesChecker`` corresponds to what ``StaticChecker`` previously did.
Since this is all testing-only, not something used in production, and since there are believed to not yet be uses
outside the repo, we're treating this as a bug fix (patch version bump) not an incompatible change (which would
entail a major version bump and a lot of fussing for nothing).
* Make class initialization of ``IntegratedFixture`` happen at instance-creation time.
That simplifies the loading actions needed. Those can happen in ``conftest.py`` rather than in
``dcicutils.ff_mocks``, which in turn should allow ``dcicutils.ff_mocks`` to be imported without error,
fixing `C4-932 <https://hms-dbmi.atlassian.net/browse/C4-932>`_