Christian Ledermann
Christian Ledermann
``` SPEED-NORAIN_RAPIDSCAT_999_201504042251_201504050024 0 SPEED-NORAIN_RAPIDSCAT_999_201504042251_201504050024.png 60.0-60.0179-180 ```
Mutable class attributes may lead to information leaking from one instance to another. ``` class MyClass(object): errors = [] def do_something(self): try: ... except SomeException as e: self.errors.append(e) ``` Mutable...
### Issue description or question In unit tests of a legacy system I often come across code like: ``` with patch('...', return_value='whatever'): with patch.object(LocalObj, 'get_...', return_value=expected_data) as mocked_x: with patch('..',...
Picotui is a Text User Interface (TUI) widget library for Python3. https://github.com/pfalcon/picotui I think this could be fun and be a minimalistic renderer for testing
Pravda
Brand new, to keep an eye on: https://github.com/wemake-services/pravda Python type-checker written in Rust
Add a (quick and dirty) coverage style HTML report. #193 The generated HTML still needs some styling, but is usable.
When using the live_server in an integration test fixture: ```python @pytest.fixture(scope='session', name='server_url') def get_server_url(live_server, environment): """Start a django server to test against and return the url of the server.""" yield...
Would https://github.com/Zac-HD/hypothesmith fit in here? This package provides two Hypothesis strategies for generating Python source code. The generated code will always be syntactically valid, and is useful for testing parsers,...
Just FYI: https://github.com/cleder/ep2022
see: https://github.com/evvers/git-pre-commit-hook --plugin frosted --plugin json --plugin file_size --plugin rst --plugin yaml currently I use both captainhook and the above together, would be nice to have everything in one tool...