plasma-umass / scalene

Scalene: a high-performance, high-precision CPU, GPU, and memory profiler for Python with AI-powered optimization proposals
Apache License 2.0
12.23k stars 399 forks source link

Fix PytestCollectionWarning in tests #799

Closed sarahec closed 8 months ago

sarahec commented 8 months ago

Pytest emits a PytestCollectionWarning whenever it encounters a class whose name begins with Test. Setting __test__ = False in these classes resolves the issue.

See https://adamj.eu/tech/2020/07/28/how-to-fix-a-pytest-collection-warning-about-web-tests-test-app-class/