Skip to content

Add Original Gradual to the list of all strategies. #1332

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

Merged
merged 9 commits into from
Apr 15, 2020
Merged
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
12 changes: 7 additions & 5 deletions .github/workflows/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,26 +34,28 @@ jobs:
python -m pip install docutils==0.12
python -m pip install mock
cd docs; make clean; make html; cd ..;
- name: Install testing dependencies
- name: Run tests
run: |
python -m pip install coverage
python -m pip install hypothesis==3.2
python -m pip install mypy
- name: Run tests
run: |
coverage run --source=axelrod -m unittest discover
- name: Report coverage
run: |
coverage report -m --fail-under=100
- name: Run doctest
- name: Run doctests
run: |
python doctests.py
- name: Run static type checker
run: |
python -m pip install mypy
python run_mypy.py
- name: Check that all strategies are indexed
run: |
python run_strategy_indexer.py
- name: Check that strategies are added to axelrod.all_strategies
run: |
python -m pip install pylint
python -m pylint --disable=all --enable=unused-import axelrod/strategies/_strategies.py
- name: Check that installs
run: |
python setup.py install
Expand Down
Loading