-
Notifications
You must be signed in to change notification settings - Fork 1
42 lines (40 loc) · 1.22 KB
/
unittest.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: unit-test
on:
workflow_dispatch:
pull_request:
push:
branches: main
tags: ['v*']
jobs:
linux:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
env:
DATABASE_NAME: livedatadb
DATABASE_USER: livedatauser
DATABASE_PASS: livedatapass
DATABASE_HOST: db
DATABASE_PORT: 5432
LIVE_PLOT_SECRET_KEY: "1234_live_data_server"
DJANGO_SUPERUSER_USERNAME: livedatauser
DJANGO_SUPERUSER_PASSWORD: livedatapass
steps:
- uses: actions/checkout@v3
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
channels: conda-forge,defaults
mamba-version: "*"
environment-file: environment.yml
cache-environment-key: ${{ runner.os }}-env-${{ hashFiles('**/environment.yml') }}
cache-downloads-key: ${{ runner.os }}-downloads-${{ hashFiles('**/environment.yml') }}
- name: Start docker containers
run: |
cp ./config/docker-compose.envlocal.yml docker-compose.yml
docker compose up --build -d
- name: Sleep, wait for containers to start up
run: sleep 30
- name: Run unit tests
run: python -m pytest tests/