diff options
author | 2019-06-22 20:07:27 -0700 | |
---|---|---|
committer | 2019-06-22 20:07:27 -0700 | |
commit | 901b92e7fc10486af55eddaedaf755c0bcab2078 (patch) | |
tree | 6cb2e9633fccefa51a03620c93c4b5b822542979 | |
parent | Add missing steps key (diff) |
Remove -it options from docker exec
-rw-r--r-- | azure-pipelines.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index af1d0eb..65bf054 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -32,7 +32,7 @@ jobs: displayName: 'Start Container' - script: | - docker exec -it snekbox_test /bin/ash -c \ + docker exec snekbox_test /bin/ash -c \ 'pipenv run lint --format junit-xml --output-file test-lint.xml' displayName: 'Run Linter' @@ -44,7 +44,7 @@ jobs: testRunTitle: 'Lint Results' - script: | - docker exec -it snekbox_test /bin/ash -c \ + docker exec snekbox_test /bin/ash -c \ 'pipenv run coverage run -m xmlrunner' displayName: 'Run Unit Tests' @@ -56,7 +56,7 @@ jobs: testRunTitle: 'Test Results' - script: | - docker exec -it snekbox_test /bin/ash -c \ + docker exec snekbox_test /bin/ash -c \ 'pipenv run coverage xml && pipenv run coverage html' displayName: 'Generate Coverage Report' |