Skip to content
Snippets Groups Projects
Commit 2d11113c authored by Alán Muñoz's avatar Alán Muñoz
Browse files

ci(tests): allow failure for checks and rename all

parent ab55d270
No related branches found
No related tags found
No related merge requests found
......@@ -12,8 +12,8 @@ variables:
TRIGGER_PYPI_NAME: ""
stages:
- test
- check
- tests
- checks
# - release
before_script:
......@@ -35,7 +35,7 @@ before_script:
- poetry install -vv $ARGS
Local Tests:
stage: test
stage: tests
script:
- poetry install -vv
- poetry run pytest ./tests --ignore ./tests/aliby/network
......@@ -43,17 +43,19 @@ Local Tests:
# TODO Split testing in four: Network vs non-network and Unit vs integration
Network Tools Test:
stage: test
stage: tests
script:
- poetry run pytest ./tests/aliby/network
Code Lint:
stage: check
stage: checks
allow_failure: true
script:
- poetry run black .
- poetry run isort .
Static Type:
stage: check
stage: checks
allow_failure: true
script:
- poetry run mypy . --exclude 'setup\.py$'
......
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