Skip to content

Commit

Permalink
Merge pull request #676 from JupiterBroadcasting/develop
Browse files Browse the repository at this point in the history
Production Deployment
  • Loading branch information
CGBassPlayer authored Aug 26, 2024
2 parents 229c5c0 + d8e0542 commit a19fd70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/periodic_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@ jobs:
- name: Checkout
uses: actions/checkout@v2

# using docker-compose, so we can re-use local Dockerfiles
# using docker compose, so we can re-use local Dockerfiles
- name: starting up containers
working-directory: ./test/
env:
# https://stackoverflow.com/a/52192327
DOCKER_BUILDKIT: 1
# https://stackoverflow.com/a/69500575
BUILDKIT_PROGRESS: plain
run: docker-compose up -d --build
run: docker compose up -d --build

- name: Run your tests
working-directory: ./test/
# https://github.com/actions/runner/issues/241#issuecomment-577360161
run: script -e -c "docker-compose exec testing pytest -m periodic --base-url http://jb-com --junitxml report.xml"
run: script -e -c "docker compose exec testing pytest -m periodic --base-url http://jb-com --junitxml report.xml"

- name: Publish Test Report
uses: dorny/test-reporter@v1
Expand Down

0 comments on commit a19fd70

Please sign in to comment.