Skip to content
Snippets Groups Projects
Commit 57233737 authored by Moul's avatar Moul
Browse files

[mod] #66: Call directly commands instead of passing by a make rule

- make not installed on the Docker images
parent fae16fd2
No related branches found
No related tags found
No related merge requests found
Pipeline #6912 passed
......@@ -48,7 +48,7 @@ format:
stage: format
image: $DOCKER_IMAGE/3.8:latest
script:
- make check-format
- black --check duniterpy tests examples
test:
extends:
......@@ -56,7 +56,7 @@ test:
stage: test
script:
- poetry install --no-dev
- make tests
- poetry run python3 -m unittest
check:
extends:
......@@ -64,8 +64,8 @@ check:
stage: test
script:
- poetry install
- make mypy
- make pylint
- poetry run mypy --ignore-missing-imports .
- poetry run pylint --disable=C,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613 --enable=C0121,C0202,C0321 --jobs=0 duniterpy tests/ examples/
build:
extends:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment