Test configuration.

This commit is contained in:
Sergey Vartanov 2021-08-25 10:17:59 +03:00
parent 76a4da369f
commit 1cb3728a0f

View file

@ -20,6 +20,7 @@ jobs:
python -m pip install --upgrade pip
pip install pytest flake8 black
pip install -r requirements.txt
pip install .
- name: Test with pytest
run: |
pytest -v
@ -31,16 +32,16 @@ jobs:
black -l 80 --check roentgen test roentgen.py
- name: Test render
run: |
python roentgen.py render -b 37.415,55.753,37.416,55.754 --cache test/data
roentgen render -b 37.415,55.753,37.416,55.754 --cache test/data
- name: Test icon generation
run: |
python roentgen.py icons
roentgen icons
- name: Test MapCSS 0.2 generation
run: |
python roentgen.py mapcss
roentgen mapcss
- name: Test element generation
run: |
python roentgen.py element --node amenity=bench,material=wood
roentgen element --node amenity=bench,material=wood
- name: Test tile generation
run: |
python roentgen.py tile --coordinates 46.09498,10.06879 --cache test/data
roentgen tile --coordinates 46.09498,10.06879 --cache test/data