Skip to content
Open
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
5 changes: 4 additions & 1 deletion .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install flake8 pylint mypy
pip install flake8 pylint mypy pytest

- name: Validate Python syntax
run: python -m compileall . -q
Expand All @@ -44,6 +44,9 @@ jobs:
- name: Test list themes
run: python create_map_poster.py --list-themes

- name: Run unit tests
run: pytest tests/ -v --tb=short

- name: Lint with flake8
run: |
# Stop the build if there are Python syntax errors or undefined names
Expand Down
Loading
Loading