opdb/.woodpecker.yml

35 lines
715 B
YAML
Raw Permalink Normal View History

pipeline:
flake8:
group: lint
2022-09-17 21:35:48 +00:00
image: python:3.9
commands:
- pip3 install flake8
- flake8 opdb/
2022-09-17 21:35:48 +00:00
pylint:
group: lint
2022-09-17 21:35:48 +00:00
image: cytopia/pylint
commands:
2022-09-17 21:35:48 +00:00
- pylint opdb/
black:
group: lint
image: pyfound/black:22.8.0
commands:
- black --check opdb/
2022-09-17 21:35:48 +00:00
test-py3.9:
group: test
image: python:3.9
commands: &test_commands
- apt-get update
- apt-get install -y postgresql
2022-09-17 21:35:48 +00:00
- pip3 install mypy .[testing]
- make mypy
- adduser pytest
# pytest-postgresql runs pg_ctl, which refuses to run as root
- su pytest -c 'make pytest'
2022-09-17 21:35:48 +00:00
test-py3.10:
group: test
image: python:3.10
commands: *test_commands