Skip to content
Snippets Groups Projects
Commit f4741c26 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 df2d8ca2
No related branches found
No related tags found
No related merge requests found
...@@ -48,7 +48,7 @@ format: ...@@ -48,7 +48,7 @@ format:
stage: format stage: format
image: $DOCKER_IMAGE/3.8:latest image: $DOCKER_IMAGE/3.8:latest
script: script:
- make check-format - black --check duniterpy tests examples
test: test:
extends: extends:
...@@ -56,7 +56,7 @@ test: ...@@ -56,7 +56,7 @@ test:
stage: test stage: test
script: script:
- poetry install --no-dev - poetry install --no-dev
- make tests - poetry run python3 -m unittest
check: check:
extends: extends:
...@@ -64,8 +64,8 @@ check: ...@@ -64,8 +64,8 @@ check:
stage: test stage: test
script: script:
- poetry install - poetry install
- make mypy - poetry run mypy --ignore-missing-imports .
- make pylint - poetry run pylint --disable=C,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0613 --enable=C0121,C0202,C0321 --jobs=0 duniterpy tests/ examples/
build: build:
extends: 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