ci: cleanup containers post e2e job
This commit is contained in:
parent
ea9687c30b
commit
97b8a025b3
|
@ -181,7 +181,14 @@ stages:
|
|||
- task: CmdLine@2
|
||||
displayName: Run full test suite
|
||||
inputs:
|
||||
script: pipenv run coverage run ./manage.py test e2e -v 3
|
||||
script: |
|
||||
pipenv run coverage run ./manage.py test e2e -v 3
|
||||
- task: CmdLine@2
|
||||
condition: always()
|
||||
displayName: Cleanup
|
||||
inputs:
|
||||
script: |
|
||||
docker stop $(docker ps -aq)
|
||||
- task: CmdLine@2
|
||||
displayName: Prepare unittests and coverage for upload
|
||||
inputs:
|
||||
|
|
Reference in New Issue