Skip to content

Unit test smoke test #327

Unit test smoke test

Unit test smoke test #327

Workflow file for this run

# This workflow will run daily at 06:45.
# It will install Python dependencies and run tests with a variety of Python versions.
# See documentation for help debugging smoke test issues:
# https://lincc-ppt.readthedocs.io/en/latest/practices/ci_testing.html#version-culprit
name: Unit test smoke test
on:
# Runs this workflow automatically
schedule:
- cron: 45 6 * * *
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v3
- uses: mamba-org/setup-micromamba@v1
with:
create-args: >-
python=3.9.15
environment-file: ci-environment.yml
- name: Install dependencies
run: |
sudo apt-get update
python -m pip install --upgrade pip
pip install .
pip install 'git+https://github.com/facebookresearch/detectron2.git@80307d2d5e06f06a8a677cc2653f23a4c56402ac'
pip install 'git+https://github.com/pmelchior/scarlet.git'
pip install .[dev]
- name: List dependencies
run: |
pip list
- name: Run unit tests with pytest
run: |
python -m pytest tests