Marc

Results 135 comments of Marc

> you suggest that we create an auxiliary class that would be responsible for generating random inputs (regarding the player class) when arguments are optional and not given by the...

Here's a rough translation to pyproject.toml ``` [build-system] requires = ["setuptools >= 61.0"] build-backend = "setuptools.build_meta" [project] dynamic = ["version"] description = "Iterated Prisoner's Dilemma in Python" readme = {file...

Sounds like a good idea to me. For the generic case we could do something similar to #1353 where the output of a tournament is a fully parseable collection of...

You can fix a random seed (or search for seeds) that trigger the expected behaviors. We strive for 100% coverage of the possible behaviors, if possible.

See also the code snippet in #1353

@gaffney2010 worked on this for the ultimatum game, see [this branch](https://github.com/Axelrod-Python/Axelrod/tree/ultimatum/axelrod/ultimatum) for some ideas and implementation details.

Hi, there's one doc test failing: ``` ---------------------------------------------------------------------- File "/home/runner/work/Axelrod/Axelrod/./docs/index.rst", line 55, in index.rst Failed example: len(axl.strategies) Expected: 240 Got: 242 ---------------------------------------------------------------------- Ran 65 tests in 76.362s FAILED (failures=1) ```...

> Also, is this something travis could do for us, not sure what the timeout limit is? I think travis has a ~10 minute time limit, which is not long...

It's up to you -- I don't mind running a cron job every night if there's interest.