Update dataset factories in test_models #1151
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: download_upload_cycle | |
on: | |
push: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
client: | |
env: | |
DJANGO_SUPERUSER_PASSWORD: django-password | |
DJANGO_SUPERUSER_USERNAME: admin | |
DJANGO_SUPERUSER_EMAIL: [email protected] | |
CICD_PUBLIC_USER: ${{ secrets.CICD_PUBLIC_USER }} | |
CICD_PUBLIC_PASSWORD: ${{ secrets.CICD_PUBLIC_PASSWORD }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: "3.8" | |
- name: Install tox | |
run: | | |
pip install --upgrade pip | |
pip install tox | |
- name: Build images | |
run: docker compose build | |
- name: Run migrations | |
run: docker compose run --rm django ./manage.py migrate | |
- name: Create super user | |
run: docker compose run -e DJANGO_SUPERUSER_PASSWORD=$DJANGO_SUPERUSER_PASSWORD --rm django ./manage.py createsuperuser --noinput --email=$DJANGO_SUPERUSER_EMAIL | |
- name: Start server | |
run: docker compose up -d | |
- uses: ifaxity/wait-on-action@v1 | |
with: | |
resource: 'http://localhost:8000/api/docs/swagger/' | |
- name: Run tox | |
run: tox -e download_upload_cycle | |
working-directory: ./swcc | |
- name: Stop server | |
run: docker compose down --volumes | |
if: ${{ always() }} |