Skip to content

Add link to discord server. #1473

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
.. image:: https://github.com/Axelrod-Python/Axelrod/workflows/CI/badge.svg
:target: https://github.com/Axelrod-Python/Axelrod/actions

Join `the Game Theory Discord <https://github.com/drvinceknight/equilibrium_explorers>`_
server to chat -- `direct invite link <https://discord.gg/NfTAkhAeyc>`_.

Axelrod
=======

Expand Down
4 changes: 2 additions & 2 deletions axelrod/tests/unit/test_strategy_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import unittest

from hypothesis import given, settings
from hypothesis import HealthCheck, given, settings
from hypothesis.strategies import integers, lists, sampled_from

import axelrod as axl
Expand All @@ -20,7 +20,7 @@ class TestDetectCycle(unittest.TestCase):
cycle=lists(sampled_from([C, D]), min_size=2, max_size=10),
period=integers(min_value=3, max_value=10),
)
@settings(max_examples=5)
@settings(max_examples=5, suppress_health_check=(HealthCheck.too_slow,))
def test_finds_cycle(self, cycle, period):
history = cycle * period
detected = detect_cycle(history)
Expand Down