Skip to content

Commit

Permalink
Fix deploy action (#210)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aiee committed Apr 25, 2022
1 parent 9b33922 commit 800f0f9
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/deploy_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,18 @@ jobs:
pip3 install setuptools wheel twine
pip install .
pip install -r requirements/dev.txt
- name: Test with pytest
run: |
docker-compose -f docker-compose.yaml up -d
sleep 45
pytest -s -v -k "not SSL"
working-directory: tests
- name: Test SSL connection with pytest
run: |
enable_ssl=true docker-compose -f docker-compose-ssl.yaml up -d
sleep 45
pytest -s -v -k "SSL"
working-directory: tests
- name: Test with pytest
run: |
docker-compose -f docker-compose.yaml up -d
sleep 45
pytest -s -v -k "not SSL"
working-directory: tests
- name: Test SSL connection with pytest
run: |
enable_ssl=true docker-compose -f docker-compose-ssl.yaml up -d
sleep 45
pytest -s -v -k "SSL"
working-directory: tests

- name: Build and publish
env:
Expand Down

0 comments on commit 800f0f9

Please sign in to comment.