Op.gg fixes (#363)

* Fixed op.gg sites

* Added testing docs, fixed some error

* Updated site list and statistics
This commit is contained in:
Soxoj
2022-02-26 14:16:13 +03:00
committed by GitHub
parent a29c3c6abe
commit 8a865a1ce6
4 changed files with 55 additions and 56 deletions
+31
View File
@@ -3,6 +3,37 @@
Development
==============
Testing
-------
It is recommended use Python 3.7/3.8 for test due to some conflicts in 3.9.
Install test requirements:
.. code-block:: console
pip install -r test-requirements.txt
Use the following commands to check Maigret:
.. code-block:: console
# run linter and typing checks
# order of checks%
# - critical syntax errors or undefined names
# - flake checks
# - mypy checks
make lint
# run testing with coverage html report
# current test coverage is 60%
make text
# open html report
open htmlcov/index.html
How to publish new version of Maigret
-------------------------------------