Switched to basic python containers running on alpine, onto which the ci steps simply install poetry. Switching to nox for test automation across multiple python versions.
This commit is contained in:
parent
860bb1b01c
commit
893d7fc000
1 changed files with 23 additions and 15 deletions
|
@ -1,34 +1,42 @@
|
|||
# branches: main
|
||||
|
||||
pipeline:
|
||||
unit_tests:
|
||||
image: mquade/poetry:3.9-1.1.11
|
||||
commands:
|
||||
- poetry config virtualenvs.create false
|
||||
- poetry install
|
||||
- pytest
|
||||
|
||||
code_lint:
|
||||
image: mquade/poetry:3.9-1.1.11
|
||||
image: python
|
||||
commands:
|
||||
- poetry config virtualenvs.create false
|
||||
- pip install poetry
|
||||
- poetry install
|
||||
- pip install black
|
||||
- black .
|
||||
- \# "----------------- running lint ------------------"
|
||||
- python --version && poetry --version && black --version
|
||||
- poetry run black .
|
||||
|
||||
unit_tests:
|
||||
image: thekevjames/nox
|
||||
commands:
|
||||
- pip install poetry
|
||||
- poetry install
|
||||
- \# "----------------- running tests ------------------"
|
||||
- python --version && poetry --version && nox --version
|
||||
- poetry run nox
|
||||
|
||||
static_analysis:
|
||||
image: mquade/poetry:3.9-1.1.11
|
||||
image: python
|
||||
commands:
|
||||
- poetry config virtualenvs.create false
|
||||
- pip install poetry
|
||||
- poetry install
|
||||
- pip install mypy
|
||||
- mypy .
|
||||
- \# "----------------- running analysis ------------------"
|
||||
- python --version && poetry --version && mypy --version
|
||||
- poetry run mypy .
|
||||
|
||||
build_dist:
|
||||
image: mquade/poetry:3.9-1.1.11
|
||||
image: python
|
||||
commands:
|
||||
- poetry config virtualenvs.create false
|
||||
- pip install poetry
|
||||
- poetry install
|
||||
- \# "----------------- running analysis ------------------"
|
||||
- python --version && poetry --version
|
||||
- poetry build
|
||||
when:
|
||||
branch: main
|
||||
|
|
Loading…
Reference in a new issue