Skip to content

Commit

Permalink
Merge pull request #15 from neutrons/ci_unittest
Browse files Browse the repository at this point in the history
Add GitHub actions for unit tests
  • Loading branch information
KedoKudo authored Jun 10, 2024
2 parents 05627f9 + 1fa4fd2 commit 8f377b2
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 2 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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/
2 changes: 0 additions & 2 deletions config/docker-compose.envlocal.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: '3.8'

services:

nginx:
Expand Down

0 comments on commit 8f377b2

Please sign in to comment.