increase task_class input validation and log messages and add unit te… #611
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Systemtests | |
on: | |
workflow_dispatch: | |
pull_request: | |
push: | |
branches: [next, qa, main] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: conda-incubator/setup-miniconda@v3 | |
with: | |
auto-update-conda: true | |
- name: Setup libmamba solver | |
run: | | |
conda install -n base conda-libmamba-solver | |
conda config --set solver libmamba | |
- name: Install requirements | |
run: | | |
# --quiet should turn off progress bars to make logs more readable | |
conda env create --file conda_environment.yml --quiet | |
conda activate webmon | |
conda env update --file conda_development.yml --quiet | |
- name: Build requirements | |
run: | | |
conda activate webmon | |
make all | |
- name: Stand up docker containers | |
run: docker compose up --build -d | |
env: | |
DJANGO_SETTINGS_MODULE: reporting.reporting_app.settings.envtest | |
LDAP_SERVER_URI: . | |
LDAP_DOMAIN_COMPONENT: . | |
- name: Wait for everything to start up | |
run: sleep 66 | |
- name: Test with pytest | |
run: | | |
conda activate webmon | |
python -m pytest tests | |
env: | |
DJANGO_SETTINGS_MODULE: reporting.reporting_app.settings.envtest | |
LDAP_SERVER_URI: . | |
LDAP_DOMAIN_COMPONENT: . | |
LIVE_PLOT_SECRET_KEY: secretKey | |
- name: Stand down docker containers | |
run: docker compose down |