- python3.8
In repo directory perform this instruction step-by-step
- Create venv
python3.8 -m venv venv_cachemaster
- Activate venv
source venv_cachemaster/bin/activate
- Update pip, install requirements
(venv_cachemaster) pip install -U pip
(venv_cachemaster) pip install -r requirements.txt
- Run dummy webserver (in different terminal)
(venv_cachemaster) python dummy_server.py
- Run tests
(venv_cachemaster) pytest test_cache.py