-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
53 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
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} | ||
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 | ||
env: | ||
DATABASE_NAME: livedatadb | ||
DATABASE_USER: livedatauser | ||
DATABASE_PASS: livedatapass | ||
DATABASE_HOST: db | ||
DATABASE_PORT: 5432 | ||
LIVE_PLOT_SECRET_KEY: "live_data_server_47352" | ||
DJANGO_SUPERUSER_USERNAME: ldsuser | ||
DJANGO_SUPERUSER_PASSWORD: ldspass | ||
- name: Sleep, wait for containers to start up | ||
run: sleep 20 | ||
- name: Run unit tests | ||
run: | | ||
echo "running unit tests" | ||
export DJANGO_SUPERUSER_USERNAME=ldsuser DJANGO_SUPERUSER_PASSWORD=ldspass | ||
python -m pytest --cov=src --cov-report=xml --cov-report=term-missing tests/ | ||
env: | ||
LIVE_PLOT_SECRET_KEY: "live_data_server_47352" | ||
DJANGO_SUPERUSER_USERNAME: ldsuser | ||
DJANGO_SUPERUSER_PASSWORD: ldspass | ||
# - name: upload coverage to codecov | ||
# uses: codecov/codecov-action@v4 | ||
# with: | ||
# token: ${{ secrets.CODECOV_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
version: '3.8' | ||
|
||
services: | ||
|
||
nginx: | ||
|