Skip to content
Snippets Groups Projects
.gitlab-ci.yml 509 B
Newer Older
stages:
  - test
default:
  image: python:3.10
  tags:
    - ssec_shared
  before_script:
Paolo Veglio's avatar
Paolo Veglio committed
    - python --version # For debugging
    - pip install hatch pytest
  tags:
    - ssec_shared
  script:
    - python --version
    - pip install -e .
    - python setup.py build_ext --inplace
    - pytest tests/test_conf.py
    - pytest tests/test_read_data.py::test_sst
    - pytest tests/test_read_data.py::test_ndvi
    - pytest tests/test_read_data.py::test_geos
Paolo Veglio's avatar
Paolo Veglio committed
    - pytest tests/test_spectral_tests.py