-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
28 lines (26 loc) · 988 Bytes
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
stages:
- build
- test
build_pipeline:
image: condaforge/mambaforge:23.3.1-0
stage: build
script:
- mamba env create -f environment.yml --prefix conda_env/
- source /opt/conda/bin/activate conda_env/
- pip install .
test_pipeline:
image: condaforge/mambaforge:23.3.1-0
stage: test
script:
- mamba env create -f environment.yml --prefix conda_env/
- source /opt/conda/bin/activate conda_env/
- pip install .
- python -m unittest tests/unit_tests/test_alignment_info.py
- python -m unittest tests/unit_tests/test_counting.py
- python -m unittest tests/unit_tests/test_coverage.py
- python -m unittest tests/unit_tests/test_io_methods.py
- python -m unittest tests/unit_tests/test_read_classification.py
- python -m unittest tests/unit_tests/test_read_processing.py
- python -m unittest tests/unit_tests/test_seq_table.py
- bash tests/integration_tests/test_bowtie2.sh
- bash tests/integration_tests/test_star.sh