Skip to content

Latest commit

 

History

History
19 lines (13 loc) · 466 Bytes

development_notes.md

File metadata and controls

19 lines (13 loc) · 466 Bytes

Notes for developers

Tests should be run against installed package:

git clone [email protected]:MasterSergius/acachecontrol.git
cd acachecontrol
pip install .

Then run tests: pytest tests or python -m pytest tests

Supported python versions: 3.6+ (Note that asyncio.run() introduced in 3.7)

Before commit

Run make lint to check code style ("black" automatically formats code, run again to re-check). Run make install test to run all tests.