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

feat(CI): add minimal pipeline test to ci

parent 4e6fc16b
No related branches found
No related tags found
No related merge requests found
...@@ -37,12 +37,21 @@ before_script: ...@@ -37,12 +37,21 @@ before_script:
Local Tests: Local Tests:
stage: tests stage: tests
script: script:
- poetry install -vv # - poetry install -vv
- poetry run pytest ./tests --ignore ./tests/aliby/network - poetry run pytest ./tests --ignore ./tests/aliby/network
# TODO Split testing in four: Network vs non-network and Unit vs integration Local Integration Tests:
stage: tests
script:
# - poetry install -vv
- poetry run pytest ./tests --ignore ./tests/aliby/network
- DIRNAME="test_datasets"
- curl https://zenodo.org/record/7513194/files/test_datasets.tar.gz\?download\=1 -o "example.tar.gz"
- mkdir -p $DIRNAME
- tar xvf example.tar.gz -C $DIRNAME
- pytest -s tests/aliby/pipeline --file $DIRNAME
Network Tools Test: Network Tools Tests:
stage: tests stage: tests
script: script:
- poetry run pytest ./tests/aliby/network - poetry run pytest ./tests/aliby/network
......
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