Move data from sto2 to sto4 location #3551
Workflow file for this run
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
# Pytest | |
# Runs all test in the dds_web by executing the docker compose yml files for testing. | |
# The actual pytest command is not in this file. | |
--- | |
name: Pytest | |
on: | |
push: | |
branches: [dev, master] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
pytest: | |
concurrency: | |
group: ${{ github.ref }}-pytest | |
cancel-in-progress: true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Run tests against database container | |
run: docker-compose -f docker-compose.yml -f tests/docker-compose-test.yml up --build --exit-code-from backend | |
- uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: ./coverage/report.xml |