We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c51715 commit 9fc9454Copy full SHA for 9fc9454
.github/workflows/config.yml
@@ -39,6 +39,7 @@ jobs:
39
python -m pip install coverage
40
python -m pip install hypothesis==3.2
41
python -m pip install mypy
42
+ python -m pip install pylint
43
- name: Run tests
44
run: |
45
coverage run --source=axelrod -m unittest discover
@@ -54,6 +55,9 @@ jobs:
54
55
- name: Check that all strategies are indexed
56
57
python run_strategy_indexer.py
58
+ - name: Check that strategies are added to axl.all_strategies
59
+ run: |
60
+ python -m pylint --disable=all --enable=unused-import axelrod/strategies/_strategies.py
61
- name: Check that installs
62
63
python setup.py install
0 commit comments