David Kremer

Results 6 issues of David Kremer

```python # -*- coding: utf-8 -*- import string import pytest @pytest.fixture def list_of_tuple_for_testing(): yield [(ord(x), x) for x in string.ascii_uppercase] @pytest.mark.parametrize( 'chr_code, chr_object', pytest.lazy_fixture('list_of_tuple_for_testing') ) def test_all_files(chr_code, chr_object): assert chr(chr_code)...

Hello, I have a a standard module for running my testSuite that do some initial configuration. When I add the MultiProcessing() module to the list of modules to be used...

Tutorial on parsec is out of date, doesn't work with current latest Haskell/GHC distribution for various reason. I would be glad to submit a pull request to fix it.

1. put many different entries for the same key in the _config.yml file 2. select « create a new post » from the jekyll plugin. You are done On the...

I am fairly new to this project. I very recently migrated a software project test-suite from nosetest to pytest, mainly because of the Xdist benefits I had heard of. The...

question