File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -344,7 +344,7 @@ class EvolvedAttention(Player):
344
344
classifier = {
345
345
"memory_depth" : MEMORY_LENGTH ,
346
346
"stochastic" : False ,
347
- "long_run_time" : False ,
347
+ "long_run_time" : True ,
348
348
"inspects_source" : False ,
349
349
"manipulates_source" : False ,
350
350
"manipulates_state" : False ,
Original file line number Diff line number Diff line change @@ -303,6 +303,7 @@ def test_inclusion_of_strategy_lists(self):
303
303
def test_long_run_strategies (self ):
304
304
long_run_time_strategies = [
305
305
axl .DBS ,
306
+ axl .EvolvedAttention ,
306
307
axl .MetaMajority ,
307
308
axl .MetaMajorityFiniteMemory ,
308
309
axl .MetaMajorityLongMemory ,
Original file line number Diff line number Diff line change @@ -25,14 +25,15 @@ deps =
25
25
pytest-cov
26
26
pytest-randomly
27
27
pytest-sugar
28
+ pytest-xdist
28
29
isort
29
30
black
30
31
numpy ==1.26.4
31
32
torch ==2.6.0
32
33
mypy
33
34
types-setuptools
34
35
commands =
35
- python -m pytest --cov-report term-missing --cov =axelrod --cov-fail-under =100 . --doctest-glob =" *.md" --doctest-glob =" *.rst"
36
+ python -m pytest --cov-report term-missing --cov =axelrod --cov-fail-under =100 -n auto . --doctest-glob =" *.md" --doctest-glob =" *.rst"
36
37
python -m black -l 80 . --check
37
38
python -m isort --check-only axelrod/.
38
39
python run_mypy.py
You can’t perform that action at this time.
0 commit comments