Skip to content

Commit

Permalink
Fix pytest container name
Browse files Browse the repository at this point in the history
  • Loading branch information
TheJaeger committed Sep 10, 2024
1 parent 1aa8cca commit 5b9e77e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pydesigner_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ jobs:
run: docker build -t pydesigner-test -f tests/Dockerfile .

- name: Run tests in Docker container
run: docker run pydesigner-test
run: docker run --name pydesigner-test-container pydesigner-test

- name: Copy test results
run: docker cp pydesigner-test:/test_results/ ./test_results
run: docker cp pydesigner-test-container:/test_results/ ./test_results

- name: Upload test results
uses: actions/upload-artifact@v4
Expand Down

0 comments on commit 5b9e77e

Please sign in to comment.